NewPipe/app/build.gradle

39 lines
1.1 KiB
Groovy
Raw Normal View History

2015-09-04 00:15:03 +00:00
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
2015-12-02 10:08:43 +00:00
buildToolsVersion "23.0.2"
2015-09-04 00:15:03 +00:00
defaultConfig {
applicationId "org.schabi.newpipe"
minSdkVersion 15
targetSdkVersion 23
versionCode 10
versionName "0.7.1"
2015-09-04 00:15:03 +00:00
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
2015-12-01 20:31:10 +00:00
lintOptions {
checkReleaseBuilds false
// Or, if you prefer, you can continue to check for errors in release builds,
// but continue the build even when errors are found:
abortOnError false
}
2015-09-04 00:15:03 +00:00
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile 'com.android.support:appcompat-v7:23.1.1'
compile 'com.android.support:support-v4:23.1.1'
compile 'com.android.support:design:23.1.1'
2015-12-02 10:08:43 +00:00
compile 'com.android.support:cardview-v7:23.1.1'
compile 'com.android.support:recyclerview-v7:23.1.1'
2015-09-04 00:15:03 +00:00
compile 'org.jsoup:jsoup:1.8.3'
compile 'org.mozilla:rhino:1.7.7'
}