52 lines
1.6 KiB
Groovy
52 lines
1.6 KiB
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 25
|
|
buildToolsVersion '23.0.3'
|
|
|
|
defaultConfig {
|
|
applicationId "org.schabi.newpipe"
|
|
minSdkVersion 15
|
|
targetSdkVersion 25
|
|
versionCode 23
|
|
versionName "0.8.9"
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
|
|
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
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_7
|
|
targetCompatibility JavaVersion.VERSION_1_7
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
testCompile 'junit:junit:4.12'
|
|
compile 'com.android.support:appcompat-v7:25.1.1'
|
|
compile 'com.android.support:support-v4:25.1.1'
|
|
compile 'com.android.support:design:25.1.1'
|
|
compile 'com.android.support:recyclerview-v7:25.1.1'
|
|
compile 'org.jsoup:jsoup:1.8.3'
|
|
compile 'org.mozilla:rhino:1.7.7'
|
|
compile 'info.guardianproject.netcipher:netcipher:1.2'
|
|
compile 'de.hdodenhof:circleimageview:2.0.0'
|
|
compile 'com.nostra13.universalimageloader:universal-image-loader:1.9.5'
|
|
compile 'com.github.nirhart:parallaxscroll:1.0'
|
|
compile 'com.google.android.exoplayer:exoplayer:r1.5.5'
|
|
compile 'com.google.code.gson:gson:2.4'
|
|
compile 'com.nononsenseapps:filepicker:3.0.0'
|
|
testCompile 'junit:junit:4.12'
|
|
testCompile 'org.mockito:mockito-core:1.10.19'
|
|
compile 'ch.acra:acra:4.9.0'
|
|
}
|