2015-09-04 02:15:03 +02:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
|
|
|
android {
|
2016-07-21 16:43:24 +02:00
|
|
|
compileSdkVersion 24
|
2016-02-05 17:09:29 +01:00
|
|
|
buildToolsVersion '23.0.2'
|
2015-09-04 02:15:03 +02:00
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
applicationId "org.schabi.newpipe"
|
2015-09-21 01:10:11 +02:00
|
|
|
minSdkVersion 15
|
2016-07-25 11:12:54 +02:00
|
|
|
targetSdkVersion 24
|
2016-06-12 18:24:16 +02:00
|
|
|
versionCode 18
|
|
|
|
versionName "0.8.0"
|
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
|
|
|
|
}
|
2016-02-05 17:09:29 +01:00
|
|
|
compileOptions {
|
|
|
|
sourceCompatibility JavaVersion.VERSION_1_7
|
|
|
|
targetCompatibility JavaVersion.VERSION_1_7
|
|
|
|
}
|
2015-09-04 02:15:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2016-07-25 11:12:54 +02:00
|
|
|
compile 'com.android.support:appcompat-v7:24.1.1'
|
|
|
|
compile 'com.android.support:support-v4:24.1.1'
|
|
|
|
compile 'com.android.support:design:24.1.1'
|
|
|
|
compile 'com.android.support:recyclerview-v7:24.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'
|
2016-02-05 17:09:29 +01:00
|
|
|
compile 'de.hdodenhof:circleimageview:2.0.0'
|
|
|
|
compile 'com.nostra13.universalimageloader:universal-image-loader:1.9.5'
|
|
|
|
compile 'com.github.nirhart:parallaxscroll:1.0'
|
2016-02-16 03:49:58 +01:00
|
|
|
compile 'com.google.android.exoplayer:exoplayer:r1.5.5'
|
2016-06-12 18:24:16 +02:00
|
|
|
compile 'com.google.code.gson:gson:2.4'
|
2016-04-22 01:28:01 +02:00
|
|
|
compile 'com.nononsenseapps:filepicker:2.0.5'
|
2016-07-25 11:59:37 +02:00
|
|
|
testCompile 'junit:junit:4.12'
|
2015-09-04 02:15:03 +02:00
|
|
|
}
|