Skip to content

Commit

Permalink
6.7
Browse files Browse the repository at this point in the history
  • Loading branch information
fandreuz committed Feb 4, 2019
1 parent 854e2fd commit 51a979f
Show file tree
Hide file tree
Showing 115 changed files with 6,137 additions and 1,502 deletions.
27 changes: 12 additions & 15 deletions app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,17 +1,16 @@
apply plugin: 'com.android.application'
android {

compileSdkVersion 25
buildToolsVersion '26.0.2'
compileSdkVersion 27

defaultConfig {
applicationId "ohi.andre.consolelauncher"

minSdkVersion 9
targetSdkVersion 23
minSdkVersion 14
targetSdkVersion 26

versionCode 172
versionName "6.5"
versionCode 193
versionName "6.7"
}

buildTypes {
Expand All @@ -21,20 +20,15 @@ android {
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
zipAlignEnabled true
}
debug {
minifyEnabled false
shrinkResources false
zipAlignEnabled true
}
}

compileOptions {
sourceCompatibility JavaVersion.VERSION_1_7
targetCompatibility JavaVersion.VERSION_1_7
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}

dependencies {
compile 'com.android.support:appcompat-v7:25.4.0'
implementation 'com.android.support:appcompat-v7:27.1.1'
}

lintOptions {
Expand All @@ -50,5 +44,8 @@ android {
}
}
dependencies {
compile 'com.squareup.okhttp3:okhttp:3.10.0'
implementation 'com.squareup.okhttp3:okhttp:3.10.0'
implementation files('../libs/htmlcleaner-2.21.jar')
implementation 'com.jayway.jsonpath:json-path:2.3.0'
implementation files('../libs/jsoup-1.11.3.jar')
}
10 changes: 7 additions & 3 deletions app/proguard-rules.pro
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
-keep public class ohi.andre.consolelauncher.commands.main.raw.* { public *; }
-keep public abstract class ohi.andre.consolelauncher.commands.main.generals.* { public *; }
-keep public class ohi.andre.consolelauncher.commands.tuixt.raw.* { public *; }

-keep public class ohi.andre.consolelauncher.managers.notifications.NotificationService
-keep public class ohi.andre.consolelauncher.managers.notifications.KeeperService

-keep public class ohi.andre.consolelauncher.managers.options.**
-keep class ohi.andre.consolelauncher.tuils.libsuperuser.**
-keep class ohi.andre.consolelauncher.managers.suggestions.HideSuggestionViewValues

-dontwarn ohi.andre.consolelauncher.commands.main.raw.**

Expand All @@ -16,4 +16,8 @@
-dontwarn okhttp3.**
-dontwarn okio.**
-dontwarn javax.annotation.**
-keepnames class okhttp3.internal.publicsuffix.PublicSuffixDatabase
-keepnames class okhttp3.internal.publicsuffix.PublicSuffixDatabase

-dontwarn org.htmlcleaner.**
-dontwarn com.jayway.jsonpath.**
-dontwarn org.slf4j.**
12 changes: 10 additions & 2 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.WRITE_INTERNAL_STORAGE" />
<uses-permission android:name="android.permission.CALL_PHONE" />
<uses-permission android:name="android.permission.SEND_SMS" />
<uses-permission android:name="android.permission.READ_CONTACTS" />
<uses-permission android:name="android.permission.WRITE_CONTACTS" />
<uses-permission android:name="android.permission.CHANGE_WIFI_STATE" />
Expand Down Expand Up @@ -87,6 +86,16 @@
android:name="firebase_crash_collection_enabled"
android:value="false" />

<provider
android:name=".tuils.GenericFileProvider"
android:authorities="${applicationId}.provider"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/provider_paths"/>
</provider>

<activity
android:name=".LauncherActivity"
android:clearTaskOnLaunch="true"
Expand Down Expand Up @@ -231,7 +240,6 @@
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity android:name=".tuils.ErrorActivity"></activity>
</application>

</manifest>
Loading

0 comments on commit 51a979f

Please sign in to comment.