Skip to content

Commit

Permalink
Merge pull request #172 from tobykurien/master
Browse files Browse the repository at this point in the history
Final touches for Release
  • Loading branch information
SecUpwN committed Nov 3, 2014
2 parents 84eb38a + 2258006 commit f65bece
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public void onReceive(Context context, Intent intent) {
SharedPreferences prefs = context.getSharedPreferences(
AimsicdService.SHARED_PREFERENCES_BASENAME, 0);
final String AUTO_START = context.getString(R.string.pref_autostart_key);
boolean mAutoStart = prefs.getBoolean(AUTO_START, false);
boolean mAutoStart = prefs.getBoolean(AUTO_START, true);
if (mAutoStart) {
Log.i("AIMSICD", "System booted starting service.");
context.startService(new Intent(context, AimsicdService.class));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ private void loadPreferences() {
context.getString(R.string.pref_femto_detection_key), false);

boolean trackCellPref = prefs.getBoolean(
context.getString(R.string.pref_enable_cell_key), false);
context.getString(R.string.pref_enable_cell_key), true);

boolean monitorCellPref = prefs.getBoolean(
context.getString(R.string.pref_enable_cell_monitoring_key), true);
Expand Down
6 changes: 3 additions & 3 deletions app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,9 @@

<!-- ABOUT LAYOUT -->
<string name="about_aimsicd">About AIMSICD</string>
<string name="app_version">Version:&#160;</string>
<string name="aimsicd_about_info">Android IMSI-Catcher Detector (AIMSICD)</string>
<string name="aimsicd_about_info3">Android-based project to detect and avoid fake base stations (IMSI-Catchers) in GSM/UMTS Networks.</string>
<string name="about_github">AIMSICD-Project on GitHub</string>
<string name="about_wiki">Full Documentation (WIKI)</string>
<string name="about_donations">Anonymous Donations</string>
Expand All @@ -108,7 +110,7 @@
<string name="wiki_link">https://github.com/SecUpwN/Android-IMSI-Catcher-Detector/wiki</string>
<string name="poc_link">https://en.wikipedia.org/wiki/Proof_of_concept</string>
<string name="disclaimer_link">https://github.com/SecUpwN/Android-IMSI-Catcher-Detector/blob/master/DISCLAIMER</string>
<string name="aimsicd_github_link">https://github.com/SecUpwN/Android-IMSI-Catcher-Detector</string>
<string name="aimsicd_github_link">https://secupwn.github.io/Android-IMSI-Catcher-Detector/</string>
<string name="aimsicd_xda_link">http://forum.xda-developers.com/showthread.php?t=1422969</string>
<string name="aimsicd_release_link">https://github.com/SecUpwN/Android-IMSI-Catcher-Detector/releases</string>
<string name="aimsicd_changelog_link">https://github.com/SecUpwN/Android-IMSI-Catcher-Detector/blob/master/CHANGELOG.md</string>
Expand Down Expand Up @@ -215,6 +217,4 @@
<string name="sms_title">Silent SMS Intercepted</string>
<string name="sms_message">Silent SMS Message has been intercepted! \n\nDetails are available through the Database Viewer.</string>
<string name="table_contains_no_data">Table contains no data to display.</string>
<string name="aimsicd_about_info3">Android-based project to detect and avoid fake base stations (IMSI-Catchers) in GSM/UMTS Networks.</string>
<string name="app_version">Version: </string>
</resources>
4 changes: 2 additions & 2 deletions app/src/main/res/xml/preferences.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@
android:key="@string/pref_autostart_key"
android:title="@string/pref_autostart_title"
android:summary="@string/pref_autostart_summ"
android:defaultValue="false" />
android:defaultValue="true" />
<CheckBoxPreference
android:key="@string/pref_persistservice_key"
android:title="@string/pref_persistservice_title"
android:summary="@string/pref_persistservice_summ"
android:defaultValue="false" />
android:defaultValue="true" />
<CheckBoxPreference
android:key="@string/pref_enable_cell_key"
android:title="@string/pref_enable_cell_title"
Expand Down

0 comments on commit f65bece

Please sign in to comment.