2015-09-04 02:15:03 +02:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
|
|
|
android {
|
2018-10-09 18:22:30 +02:00
|
|
|
compileSdkVersion 28
|
|
|
|
buildToolsVersion '28.0.3'
|
2015-09-04 02:15:03 +02:00
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
applicationId "org.schabi.newpipe"
|
2018-11-13 17:27:47 +01:00
|
|
|
minSdkVersion 19
|
2018-10-09 18:22:30 +02:00
|
|
|
targetSdkVersion 28
|
2019-07-31 18:39:33 +02:00
|
|
|
versionCode 750
|
|
|
|
versionName "0.17.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
|
|
|
}
|
2018-08-11 15:43:52 +02:00
|
|
|
|
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'
|
|
|
|
}
|
2018-08-11 15:43:52 +02:00
|
|
|
|
2017-08-07 15:02:30 +02:00
|
|
|
debug {
|
|
|
|
multiDexEnabled true
|
|
|
|
debuggable true
|
|
|
|
applicationIdSuffix ".debug"
|
|
|
|
}
|
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
|
|
|
|
}
|
2018-08-11 15:43:52 +02:00
|
|
|
|
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 {
|
2018-10-09 18:22:30 +02:00
|
|
|
supportLibVersion = '28.0.0'
|
2019-03-05 18:05:44 +01:00
|
|
|
exoPlayerLibVersion = '2.9.6'
|
2018-06-26 21:25:53 +02:00
|
|
|
roomDbLibVersion = '1.1.1'
|
2018-10-09 18:22:30 +02:00
|
|
|
leakCanaryLibVersion = '1.5.4' //1.6.1
|
2019-03-05 18:05:44 +01:00
|
|
|
okHttpLibVersion = '3.12.1'
|
2018-03-21 08:11:54 +01:00
|
|
|
icepickLibVersion = '3.2.0'
|
|
|
|
stethoLibVersion = '1.5.0'
|
2017-12-07 01:19:56 +01:00
|
|
|
}
|
2018-08-17 17:03:26 +02:00
|
|
|
|
2015-09-04 02:15:03 +02:00
|
|
|
dependencies {
|
2018-10-09 18:22:30 +02:00
|
|
|
androidTestImplementation('com.android.support.test.espresso:espresso-core:3.0.2', {
|
2017-06-28 07:27:32 +02:00
|
|
|
exclude module: 'support-annotations'
|
2018-10-09 18:22:30 +02:00
|
|
|
})
|
2017-06-28 07:27:32 +02:00
|
|
|
|
2019-07-31 18:35:46 +02:00
|
|
|
implementation 'com.github.TeamNewPipe:NewPipeExtractor:5f65788a2f89e'
|
2018-04-01 21:54:00 +02:00
|
|
|
|
2017-11-10 10:33:59 +01:00
|
|
|
testImplementation 'junit:junit:4.12'
|
2018-10-09 18:22:30 +02:00
|
|
|
testImplementation 'org.mockito:mockito-core:2.23.0'
|
2017-03-27 21:34:37 +02:00
|
|
|
|
2018-10-09 18:22:30 +02: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}"
|
|
|
|
implementation "com.android.support:cardview-v7:${supportLibVersion}"
|
|
|
|
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
|
2017-04-26 21:32:20 +02:00
|
|
|
|
2018-10-09 18:22:30 +02:00
|
|
|
implementation 'ch.acra:acra:4.9.2' //4.11
|
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-03-30 03:24:30 +02:00
|
|
|
|
2018-10-09 18:22:30 +02:00
|
|
|
implementation "com.google.android.exoplayer:exoplayer:${exoPlayerLibVersion}"
|
|
|
|
implementation "com.google.android.exoplayer:extension-mediasession:${exoPlayerLibVersion}"
|
2017-08-07 15:02:30 +02:00
|
|
|
|
2018-10-09 18:22:30 +02:00
|
|
|
debugImplementation "com.facebook.stetho:stetho:${stethoLibVersion}"
|
|
|
|
debugImplementation "com.facebook.stetho:stetho-urlconnection:${stethoLibVersion}"
|
2018-03-14 05:45:44 +01:00
|
|
|
debugImplementation 'com.android.support:multidex:1.0.3'
|
2017-08-07 15:02:30 +02:00
|
|
|
|
2018-10-09 18:22:30 +02:00
|
|
|
implementation 'io.reactivex.rxjava2:rxjava:2.2.2'
|
|
|
|
implementation 'io.reactivex.rxjava2:rxandroid:2.1.0'
|
2018-03-16 07:42:46 +01:00
|
|
|
implementation 'com.jakewharton.rxbinding2:rxbinding:2.1.1'
|
2017-09-03 08:04:18 +02:00
|
|
|
|
2018-10-09 18:22:30 +02:00
|
|
|
implementation "android.arch.persistence.room:runtime:${roomDbLibVersion}"
|
|
|
|
implementation "android.arch.persistence.room:rxjava2:${roomDbLibVersion}"
|
|
|
|
annotationProcessor "android.arch.persistence.room:compiler:${roomDbLibVersion}"
|
2018-02-08 21:46:54 +01:00
|
|
|
|
2018-10-09 18:22:30 +02:00
|
|
|
implementation "frankiesardo:icepick:${icepickLibVersion}"
|
|
|
|
annotationProcessor "frankiesardo:icepick-processor:${icepickLibVersion}"
|
2018-02-20 16:24:43 +01:00
|
|
|
|
2018-10-09 18:22:30 +02:00
|
|
|
debugImplementation "com.squareup.leakcanary:leakcanary-android:${leakCanaryLibVersion}"
|
|
|
|
releaseImplementation "com.squareup.leakcanary:leakcanary-android-no-op:${leakCanaryLibVersion}"
|
2018-06-16 11:55:57 +02:00
|
|
|
|
2018-10-09 18:22:30 +02:00
|
|
|
implementation "com.squareup.okhttp3:okhttp:${okHttpLibVersion}"
|
|
|
|
debugImplementation "com.facebook.stetho:stetho-okhttp3:${stethoLibVersion}"
|
2015-09-04 02:15:03 +02:00
|
|
|
}
|