forked from zacharee/Tweaker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
95 lines (80 loc) · 3.66 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-parcelize'
apply plugin: 'com.google.gms.google-services'
apply plugin: 'com.google.firebase.crashlytics'
android {
compileSdkVersion 31
defaultConfig {
applicationId "com.zacharee1.systemuituner"
minSdkVersion 23
targetSdkVersion 31
versionCode 337
versionName versionCode.toString()
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
packagingOptions {
exclude 'META-INF/library_release.kotlin_module'
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_11
targetCompatibility JavaVersion.VERSION_11
}
buildFeatures {
viewBinding = true
}
kotlinOptions {
jvmTarget = "11"
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.0'
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.0'
implementation 'androidx.appcompat:appcompat:1.4.1'
implementation 'androidx.core:core-ktx:1.7.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.3'
implementation 'androidx.recyclerview:recyclerview:1.2.1'
implementation 'androidx.annotation:annotation:1.3.0'
implementation 'androidx.preference:preference-ktx:1.2.0'
implementation ('androidx.slidingpanelayout:slidingpanelayout:1.2.0')
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
implementation 'com.google.android.material:material:1.6.0-beta01'
implementation 'com.google.firebase:firebase-analytics:20.1.2'
implementation 'com.google.firebase:firebase-crashlytics:18.2.9'
implementation 'com.github.zacharee:colorpicker:577236da1d'
implementation 'com.google.code.gson:gson:2.8.9'
implementation 'com.android.billingclient:billing:4.1.0'
implementation 'com.android.billingclient:billing-ktx:4.1.0'
implementation "androidx.navigation:navigation-fragment-ktx:2.4.1"
implementation "androidx.navigation:navigation-ui-ktx:2.4.1"
implementation 'org.lsposed.hiddenapibypass:hiddenapibypass:4.2'
implementation 'com.github.zacharee:material:18bda1a64b'
implementation 'com.heinrichreimersoftware:material-intro:2.0.0'
implementation 'com.github.reddit:IndicatorFastScroll:1.4.0'
// implementation 'eu.chainfire:libsuperuser:1.1.0.+'
implementation "com.github.topjohnwu.libsu:core:3.1.2"
implementation 'jp.wasabeef:recyclerview-animators:4.0.2'
implementation 'io.noties.markwon:core:4.6.2'
implementation 'io.noties.markwon:html:4.6.2'
implementation 'com.joaomgcd:taskerpluginlibrary:0.4.2'
implementation 'dev.rikka.shizuku:api:12.1.0'
implementation 'dev.rikka.shizuku:provider:12.1.0'
implementation 'com.github.zacharee:PatreonSupportersRetrieval:4ce71eb5bf'
implementation 'me.grantland:autofittextview:0.2.1'
//Commend out these dependencies and replace them with their remote references.
//Check JitPack for the latest COMMIT hashes, NOT the latest versions.
//The "Tag" reference should be replaced with the commit hash.
implementation project(':seekbar')
//implementation 'com.github.zacharee:SeekBarPreference:Tag'
implementation project(':category')
//implementation 'com.github.zacharee:CollapsiblePreferenceCategory:Tag'
implementation project(':expandabletv')
//implementation 'com.github.zacharee:Android-ExpandableTextView:Tag'
}