projects
/
noFUDroid.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
update gradle plugin
[noFUDroid.git]
/
app
/
build.gradle
1
apply plugin: 'com.android.application'
2
3
android {
4
compileSdkVersion 23
5
buildToolsVersion '23.0.2'
6
7
defaultConfig {
8
applicationId "de.ralfj.xposed.nofudroid"
9
minSdkVersion 19
10
maxSdkVersion 19
11
targetSdkVersion 21
12
versionCode 2
13
versionName "1.0.1"
14
}
15
buildTypes {
16
release {
17
minifyEnabled false
18
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
19
}
20
}
21
}
22
23
dependencies {
24
provided files('libs/XposedBridgeApi.jar')
25
}