forked from AOSiP/platform_packages_services_Telephony
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Telephony: Implement alternative method for manual network select
* APK extracted from oneplus, decompiled, adapted and cleaned up. Translations imported from AOSP To use it add TARGET_USES_ALTERNATIVE_MANUAL_NETWORK_SELECT := true on BoardConfig Change-Id: I6ffdba466da2cb5d71d2ccff3115c1c30fe3e734 Signed-off-by: Josh Fox (XlxFoXxlX) <[email protected]>
- Loading branch information
1 parent
9e775da
commit 560cf9a
Showing
5 changed files
with
52 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
LOCAL_PATH := $(call my-dir) | ||
|
||
ifeq ($(TARGET_USES_ALTERNATIVE_MANUAL_NETWORK_SELECT),true) | ||
include $(CLEAR_VARS) | ||
LOCAL_MODULE := CustomNetworkSettings | ||
LOCAL_SRC_FILES := CustomNetworkSettings.apk | ||
LOCAL_CERTIFICATE := platform | ||
LOCAL_MODULE_TAGS := optional | ||
LOCAL_MODULE_CLASS := APPS | ||
LOCAL_DEX_PREOPT := false | ||
LOCAL_MODULE_SUFFIX := .apk | ||
include $(BUILD_PREBUILT) | ||
endif |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters