forked from jclehner/AppOpsXposed
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathbuild.gradle
More file actions
30 lines (25 loc) · 701 Bytes
/
build.gradle
File metadata and controls
30 lines (25 loc) · 701 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
apply plugin: 'com.android.application'
android {
compileSdkVersion exCompileSdkVersion
buildToolsVersion exBuildToolsVersion
defaultConfig {
applicationId "at.jclehner.appopsxposed.re"
minSdkVersion 18
targetSdkVersion 28
versionCode 13006
versionName '1.30.6'
}
buildTypes {
release {
minifyEnabled true
shrinkResources true
useProguard true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compileOnly project(':hax')
compileOnly 'de.robv.android.xposed:api:+'
implementation project(':library')
}