-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbuild.gradle
More file actions
33 lines (27 loc) · 795 Bytes
/
build.gradle
File metadata and controls
33 lines (27 loc) · 795 Bytes
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
apply plugin: 'com.android.application'
android {
compileSdkVersion exCompileSdkVersion
buildToolsVersion exBuildToolsVersion
defaultConfig {
applicationId "xeed.xposed.fxrmod"
minSdkVersion 15
targetSdkVersion 28
versionCode 14
versionName "1.6.1"
}
buildTypes {
release {
minifyEnabled true
shrinkResources true
useProguard true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compileOnly project(':hax')
implementation project(':library')
implementation 'androidx.appcompat:appcompat:+'
implementation 'androidx.preference:preference:+'
compileOnly 'de.robv.android.xposed:api:+'
}