2015-09-04 00:15:03 +00:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
|
|
|
android {
|
2016-11-18 22:56:08 +00:00
|
|
|
compileSdkVersion 25
|
2017-04-18 20:34:04 +00:00
|
|
|
buildToolsVersion '25.0.2'
|
2015-09-04 00:15:03 +00:00
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
applicationId "org.schabi.newpipe"
|
2015-09-20 23:10:11 +00:00
|
|
|
minSdkVersion 15
|
2016-11-18 22:56:08 +00:00
|
|
|
targetSdkVersion 25
|
2017-05-20 15:45:50 +00:00
|
|
|
versionCode 34
|
|
|
|
versionName "0.9.7"
|
2015-09-04 00:15:03 +00:00
|
|
|
}
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled false
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
}
|
2015-12-24 13:55:33 +00:00
|
|
|
|
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
|
|
|
|
}
|
2016-02-05 16:09:29 +00:00
|
|
|
compileOptions {
|
|
|
|
sourceCompatibility JavaVersion.VERSION_1_7
|
|
|
|
targetCompatibility JavaVersion.VERSION_1_7
|
|
|
|
}
|
2015-09-04 00:15:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2016-08-01 23:42:05 +00:00
|
|
|
testCompile 'junit:junit:4.12'
|
2017-03-27 19:34:37 +00:00
|
|
|
testCompile 'org.mockito:mockito-core:1.10.19'
|
|
|
|
testCompile 'org.json:json:20160810'
|
|
|
|
|
2017-04-18 20:34:04 +00:00
|
|
|
compile 'com.android.support:appcompat-v7:25.3.1'
|
|
|
|
compile 'com.android.support:support-v4:25.3.1'
|
|
|
|
compile 'com.android.support:design:25.3.1'
|
|
|
|
compile 'com.android.support:recyclerview-v7:25.3.1'
|
2017-04-26 19:32:20 +00:00
|
|
|
|
|
|
|
compile 'com.google.code.gson:gson:2.7'
|
2015-09-04 00:15:03 +00:00
|
|
|
compile 'org.jsoup:jsoup:1.8.3'
|
|
|
|
compile 'org.mozilla:rhino:1.7.7'
|
2017-04-26 19:32:20 +00:00
|
|
|
compile 'ch.acra:acra:4.9.0'
|
2015-12-24 13:55:33 +00:00
|
|
|
compile 'info.guardianproject.netcipher:netcipher:1.2'
|
2017-04-26 19:32:20 +00:00
|
|
|
|
2016-02-05 16:09:29 +00:00
|
|
|
compile 'com.nostra13.universalimageloader:universal-image-loader:1.9.5'
|
2017-04-26 19:32:20 +00:00
|
|
|
compile 'de.hdodenhof:circleimageview:2.0.0'
|
2016-02-05 16:09:29 +00:00
|
|
|
compile 'com.github.nirhart:parallaxscroll:1.0'
|
2016-08-03 21:36:46 +00:00
|
|
|
compile 'com.nononsenseapps:filepicker:3.0.0'
|
2017-03-27 04:08:16 +00:00
|
|
|
compile 'com.google.android.exoplayer:exoplayer:r2.3.1'
|
2015-09-04 00:15:03 +00:00
|
|
|
}
|