NewPipe/app/build.gradle

40 lines
1.1 KiB
Groovy
Raw Normal View History

2015-09-04 02:15:03 +02:00
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
2015-12-02 11:08:43 +01:00
buildToolsVersion "23.0.2"
2015-09-04 02:15:03 +02:00
defaultConfig {
applicationId "org.schabi.newpipe"
minSdkVersion 15
targetSdkVersion 23
2016-01-08 22:22:39 +01:00
versionCode 12
versionName "0.7.3"
2015-09-04 02:15:03 +02:00
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
2015-12-24 14:55:33 +01:00
2015-12-01 21:31:10 +01: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 02:15:03 +02: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 11:08:43 +01:00
compile 'com.android.support:cardview-v7:23.1.1'
compile 'com.android.support:recyclerview-v7:23.1.1'
2015-09-04 02:15:03 +02:00
compile 'org.jsoup:jsoup:1.8.3'
compile 'org.mozilla:rhino:1.7.7'
2015-12-24 14:55:33 +01:00
compile 'info.guardianproject.netcipher:netcipher:1.2'
2015-09-04 02:15:03 +02:00
}