-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathbuild.gradle
36 lines (35 loc) · 911 Bytes
/
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
apply plugin: 'com.android.application'
android {
compileSdkVersion 22
buildToolsVersion "23.0.2"
defaultConfig {
applicationId 'localhost.derekziemba.activitylauncher'
minSdkVersion 19
targetSdkVersion 22
}
buildTypes {
release {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
zipAlignEnabled true
renderscriptOptimLevel 3
}
optimized {
minifyEnabled true
}
debug {
debuggable false
minifyEnabled true
}
}
productFlavors {
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_7
targetCompatibility JavaVersion.VERSION_1_7
}
}
dependencies {
compile 'com.android.support:support-v4:23.1.1'
compile files('libs/RootShell.jar')
}