2015-09-04 02:15:03 +02:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
|
|
|
android {
|
2017-11-10 10:33:59 +01:00
|
|
|
compileSdkVersion 27
|
|
|
|
buildToolsVersion '27.0.1'
|
2015-09-04 02:15:03 +02:00
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
applicationId "org.schabi.newpipe"
|
2015-09-21 01:10:11 +02:00
|
|
|
minSdkVersion 15
|
2017-11-10 10:33:59 +01:00
|
|
|
targetSdkVersion 27
|
2018-02-20 13:44:32 +01:00
|
|
|
versionCode 48
|
|
|
|
versionName "0.12.0"
|
2017-06-28 07:27:32 +02:00
|
|
|
|
|
|
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
2017-08-12 06:50:25 +02:00
|
|
|
vectorDrawables.useSupportLibrary = true
|
2015-09-04 02:15:03 +02:00
|
|
|
}
|
|
|
|
buildTypes {
|
|
|
|
release {
|
2017-09-12 13:32:53 +02:00
|
|
|
minifyEnabled true
|
|
|
|
shrinkResources true
|
2015-09-04 02:15:03 +02:00
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
2017-08-07 15:02:30 +02:00
|
|
|
debug {
|
|
|
|
multiDexEnabled true
|
|
|
|
|
|
|
|
debuggable true
|
|
|
|
applicationIdSuffix ".debug"
|
|
|
|
}
|
2017-09-09 19:41:10 +02:00
|
|
|
beta {
|
2017-11-10 10:33:59 +01:00
|
|
|
minifyEnabled true
|
|
|
|
shrinkResources true
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
|
|
|
2017-09-09 19:41:10 +02:00
|
|
|
applicationIdSuffix ".beta"
|
|
|
|
}
|
2015-09-04 02:15:03 +02:00
|
|
|
}
|
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 {
|
2018-01-04 07:53:31 +01:00
|
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
2016-02-05 17:09:29 +01:00
|
|
|
}
|
2015-09-04 02:15:03 +02:00
|
|
|
}
|
|
|
|
|
2017-12-07 01:19:56 +01:00
|
|
|
ext {
|
|
|
|
supportLibVersion = '27.0.2'
|
|
|
|
}
|
2015-09-04 02:15:03 +02:00
|
|
|
dependencies {
|
2017-11-10 10:33:59 +01:00
|
|
|
androidTestImplementation('com.android.support.test.espresso:espresso-core:2.2.2') {
|
2017-06-28 07:27:32 +02:00
|
|
|
exclude module: 'support-annotations'
|
|
|
|
}
|
|
|
|
|
2018-03-18 16:37:49 +01:00
|
|
|
implementation 'com.github.TeamNewPipe:NewPipeExtractor:f787b375e5fb6d'
|
2017-06-28 07:27:32 +02:00
|
|
|
|
2017-11-10 10:33:59 +01:00
|
|
|
testImplementation 'junit:junit:4.12'
|
|
|
|
testImplementation 'org.mockito:mockito-core:1.10.19'
|
2017-03-27 21:34:37 +02:00
|
|
|
|
2017-12-07 01:19:56 +01:00
|
|
|
implementation "com.android.support:appcompat-v7:$supportLibVersion"
|
|
|
|
implementation "com.android.support:support-v4:$supportLibVersion"
|
|
|
|
implementation "com.android.support:design:$supportLibVersion"
|
|
|
|
implementation "com.android.support:recyclerview-v7:$supportLibVersion"
|
|
|
|
implementation "com.android.support:preference-v14:$supportLibVersion"
|
2017-04-26 21:32:20 +02:00
|
|
|
|
2017-11-10 10:33:59 +01:00
|
|
|
implementation 'com.google.code.gson:gson:2.8.2'
|
2017-11-10 15:36:13 +01:00
|
|
|
implementation 'ch.acra:acra:4.9.2'
|
2017-04-26 21:32:20 +02:00
|
|
|
|
2017-11-10 10:33:59 +01:00
|
|
|
implementation 'com.nostra13.universalimageloader:universal-image-loader:1.9.5'
|
|
|
|
implementation 'de.hdodenhof:circleimageview:2.2.0'
|
|
|
|
implementation 'com.github.nirhart:ParallaxScroll:dd53d1f9d1'
|
2018-03-08 14:39:24 +01:00
|
|
|
implementation 'com.nononsenseapps:filepicker:4.2.1'
|
2018-02-22 22:30:48 +01:00
|
|
|
implementation 'com.google.android.exoplayer:exoplayer:2.7.0'
|
2017-08-07 15:02:30 +02:00
|
|
|
|
2017-11-10 10:33:59 +01:00
|
|
|
debugImplementation 'com.facebook.stetho:stetho:1.5.0'
|
|
|
|
debugImplementation 'com.facebook.stetho:stetho-urlconnection:1.5.0'
|
|
|
|
debugImplementation 'com.android.support:multidex:1.0.2'
|
2017-08-07 15:02:30 +02:00
|
|
|
|
2017-12-07 01:19:56 +01:00
|
|
|
implementation 'io.reactivex.rxjava2:rxjava:2.1.7'
|
2017-11-10 10:33:59 +01:00
|
|
|
implementation 'io.reactivex.rxjava2:rxandroid:2.0.1'
|
|
|
|
implementation 'com.jakewharton.rxbinding2:rxbinding:2.0.0'
|
2017-09-03 08:04:18 +02:00
|
|
|
|
2017-11-10 10:33:59 +01:00
|
|
|
implementation 'android.arch.persistence.room:runtime:1.0.0'
|
|
|
|
implementation 'android.arch.persistence.room:rxjava2:1.0.0'
|
|
|
|
annotationProcessor 'android.arch.persistence.room:compiler:1.0.0'
|
2017-09-03 08:04:18 +02:00
|
|
|
|
2017-11-10 10:33:59 +01:00
|
|
|
implementation 'frankiesardo:icepick:3.2.0'
|
|
|
|
annotationProcessor 'frankiesardo:icepick-processor:3.2.0'
|
2018-02-08 21:46:54 +01:00
|
|
|
|
|
|
|
debugImplementation 'com.squareup.leakcanary:leakcanary-android:1.5.4'
|
|
|
|
betaImplementation 'com.squareup.leakcanary:leakcanary-android-no-op:1.5.4'
|
|
|
|
releaseImplementation 'com.squareup.leakcanary:leakcanary-android-no-op:1.5.4'
|
2018-02-20 16:24:43 +01:00
|
|
|
|
|
|
|
implementation 'com.squareup.okhttp3:okhttp:3.9.1'
|
|
|
|
debugImplementation 'com.facebook.stetho:stetho-okhttp3:1.5.0'
|
2015-09-04 02:15:03 +02:00
|
|
|
}
|