You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
772 B
30 lines
772 B
apply plugin: 'com.android.application' |
|
|
|
android { |
|
compileSdkVersion 22 |
|
buildToolsVersion "22.0.1" |
|
|
|
defaultConfig { |
|
applicationId "acr.browser.lightning" |
|
minSdkVersion 14 |
|
targetSdkVersion 22 |
|
} |
|
|
|
buildTypes { |
|
release { |
|
minifyEnabled true |
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-project.txt' |
|
} |
|
debug { |
|
minifyEnabled true |
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-project.txt' |
|
} |
|
} |
|
} |
|
|
|
dependencies { |
|
compile project(':libnetcipher') |
|
compile 'com.android.support:palette-v7:22.1.1' |
|
compile 'com.android.support:appcompat-v7:22.1.1' |
|
compile files('libs/jsoup-1.8.1.jar') |
|
}
|
|
|