-
Notifications
You must be signed in to change notification settings - Fork 948
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Increase Minimum SDK, Export Confirmation & Code Comments
Minimum SDK increased to 16 (JB 4.1) and older or depreciated methods removed that were used to maintain compatability with lower versions. Preference fragment updated from the older SettingsActivity and MapView updated to the standard MapFragment in place of the SupportMapFragment for lower Android versions. Added a confirmation dialog once the database export has been successful confirming where the files have been exported to. Added lots of code & method comments, yeah I am lazy :), so eventually a nice JavaDoc page (Github Wiki maybe?) could be created if required to provide additional details for development. Added although not yet activated CellInfo details to retrieve the LTE Timing Advance data, this actually requires SDK 17 and above which is fine as this can be provided to those devices only.
- Loading branch information
1 parent
161bff7
commit b997915
Showing
13 changed files
with
574 additions
and
166 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 |
---|---|---|
@@ -1,84 +1,85 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | ||
package="com.SecUpwN.AIMSICD" | ||
android:versionName="0.1.6" | ||
android:versionCode="6"> | ||
package="com.SecUpwN.AIMSICD" | ||
android:versionCode="6" | ||
android:versionName="0.1.6" > | ||
|
||
<uses-feature | ||
android:glEsVersion="0x00020000" | ||
android:required="true"/> | ||
android:required="true" /> | ||
|
||
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> | ||
<uses-permission android:name="android.permission.READ_PHONE_STATE"/> | ||
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/> | ||
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/> | ||
<uses-permission android:name="android.permission.ACCESS_LOCATION_EXTRA_COMMANDS"/> | ||
<uses-permission android:name="android.permission.INTERNET"/> | ||
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/> | ||
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/> | ||
<uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES"/> | ||
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> | ||
<uses-permission android:name="android.permission.READ_PHONE_STATE" /> | ||
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" /> | ||
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" /> | ||
<uses-permission android:name="android.permission.ACCESS_LOCATION_EXTRA_COMMANDS" /> | ||
<uses-permission android:name="android.permission.INTERNET" /> | ||
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" /> | ||
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> | ||
<uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES" /> | ||
|
||
<application | ||
android:allowBackup="false" | ||
android:icon="@drawable/sense_alarm" | ||
android:label="@string/app_name" | ||
android:theme="@style/AppTheme" | ||
android:allowBackup="false"> | ||
<uses-library android:name="com.google.android.maps"/> | ||
android:theme="@style/AppTheme" > | ||
<uses-library android:name="com.google.android.maps" /> | ||
|
||
<meta-data | ||
android:name="com.google.android.gms.version" | ||
android:value="@integer/google_play_services_version" /> | ||
|
||
|
||
<activity | ||
android:name=".AIMSICD" | ||
android:exported="true" | ||
android:label="@string/app_name_short" | ||
android:screenOrientation="portrait" | ||
android:exported="true"> | ||
android:screenOrientation="portrait" > | ||
<intent-filter> | ||
<action android:name="android.intent.action.MAIN"/> | ||
<action android:name="android.intent.action.MAIN" /> | ||
|
||
<category android:name="android.intent.category.LAUNCHER"/> | ||
<category android:name="android.intent.category.DEVELOPMENT_PREFERENCE"/> | ||
<category android:name="android.intent.category.LAUNCHER" /> | ||
<category android:name="android.intent.category.DEVELOPMENT_PREFERENCE" /> | ||
</intent-filter> | ||
</activity> | ||
|
||
<service | ||
android:name=".service.AimsicdService" | ||
android:name="com.SecUpwN.AIMSICD.service.AimsicdService" | ||
android:enabled="true" | ||
android:exported="false"> | ||
android:exported="false" > | ||
</service> | ||
|
||
<receiver android:name=".receiver.BootCompletedReceiver"> | ||
<receiver android:name="com.SecUpwN.AIMSICD.receiver.BootCompletedReceiver" > | ||
<intent-filter> | ||
<action android:name="android.intent.action.BOOT_COMPLETED"/> | ||
<category android:name="android.intent.category.DEFAULT"/> | ||
<action android:name="android.intent.action.BOOT_COMPLETED" /> | ||
|
||
<category android:name="android.intent.category.DEFAULT" /> | ||
</intent-filter> | ||
</receiver> | ||
|
||
<activity | ||
android:name=".MapViewer" | ||
android:exported="true" | ||
android:label="@string/map_view" | ||
android:parentActivityName=".AIMSICD" | ||
android:exported="true"> | ||
android:parentActivityName=".AIMSICD" > | ||
<meta-data | ||
android:name="android.support.PARENT_ACTIVITY" | ||
android:value=".AIMSICD"/> | ||
android:value=".AIMSICD" /> | ||
</activity> | ||
|
||
<activity | ||
android:name=".SettingsActivity" | ||
android:label="@string/preferences" | ||
android:name=".PrefActivity" | ||
android:exported="true" | ||
android:icon="@drawable/ic_action_settings" | ||
android:parentActivityName=".AIMSICD" | ||
android:exported="true"> | ||
android:label="@string/preferences" | ||
android:parentActivityName=".AIMSICD" > | ||
<intent-filter> | ||
<category android:name="android.intent.category.DEFAULT"/> | ||
<category android:name="android.intent.category.DEFAULT" /> | ||
</intent-filter> | ||
</activity> | ||
|
||
<meta-data | ||
android:name="com.google.android.maps.v2.API_KEY" | ||
android:value="AIzaSyDI1lvgpBmNhQS33JfJA4w8GAmrtFeg078"/> | ||
android:value="AIzaSyDI1lvgpBmNhQS33JfJA4w8GAmrtFeg078" /> | ||
|
||
</application> | ||
</manifest> | ||
|
||
</manifest> |
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
Oops, something went wrong.