2015-09-04 00:15:03 +00:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
|
|
|
android {
|
2017-11-10 09:33:59 +00:00
|
|
|
compileSdkVersion 27
|
2018-03-30 08:58:32 +00:00
|
|
|
buildToolsVersion '27.0.3'
|
2015-09-04 00:15:03 +00:00
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
applicationId "org.schabi.newpipe"
|
2015-09-20 23:10:11 +00:00
|
|
|
minSdkVersion 15
|
2017-11-10 09:33:59 +00:00
|
|
|
targetSdkVersion 27
|
2018-04-01 13:29:57 +00:00
|
|
|
versionCode 60
|
|
|
|
versionName "0.13.1"
|
2017-06-28 05:27:32 +00:00
|
|
|
|
|
|
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
2017-08-12 04:50:25 +00:00
|
|
|
vectorDrawables.useSupportLibrary = true
|
2015-09-04 00:15:03 +00:00
|
|
|
}
|
|
|
|
buildTypes {
|
|
|
|
release {
|
2017-09-12 11:32:53 +00:00
|
|
|
minifyEnabled true
|
|
|
|
shrinkResources true
|
2015-09-04 00:15:03 +00:00
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
2017-08-07 13:02:30 +00:00
|
|
|
debug {
|
|
|
|
multiDexEnabled true
|
|
|
|
|
|
|
|
debuggable true
|
|
|
|
applicationIdSuffix ".debug"
|
|
|
|
}
|
2015-09-04 00:15:03 +00:00
|
|
|
}
|
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 {
|
2018-01-04 06:53:31 +00:00
|
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
2016-02-05 16:09:29 +00:00
|
|
|
}
|
2015-09-04 00:15:03 +00:00
|
|
|
}
|
|
|
|
|
2017-12-07 00:19:56 +00:00
|
|
|
ext {
|
2018-03-14 04:45:44 +00:00
|
|
|
supportLibVersion = '27.1.0'
|
2018-03-16 06:42:46 +00:00
|
|
|
exoPlayerLibVersion = '2.7.1'
|
|
|
|
roomDbLibVersion = '1.0.0'
|
2018-03-21 07:11:54 +00:00
|
|
|
leakCanaryLibVersion = '1.5.4'
|
|
|
|
okHttpLibVersion = '1.5.0'
|
|
|
|
icepickLibVersion = '3.2.0'
|
|
|
|
stethoLibVersion = '1.5.0'
|
2017-12-07 00:19:56 +00:00
|
|
|
}
|
2015-09-04 00:15:03 +00:00
|
|
|
dependencies {
|
2017-11-10 09:33:59 +00:00
|
|
|
androidTestImplementation('com.android.support.test.espresso:espresso-core:2.2.2') {
|
2017-06-28 05:27:32 +00:00
|
|
|
exclude module: 'support-annotations'
|
|
|
|
}
|
|
|
|
|
2018-04-01 19:54:00 +00:00
|
|
|
implementation 'com.github.TeamNewPipe:NewPipeExtractor:a6b6235644474'
|
|
|
|
|
2017-06-28 05:27:32 +00:00
|
|
|
|
2017-11-10 09:33:59 +00:00
|
|
|
testImplementation 'junit:junit:4.12'
|
|
|
|
testImplementation 'org.mockito:mockito-core:1.10.19'
|
2017-03-27 19:34:37 +00:00
|
|
|
|
2017-12-07 00:19:56 +00: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 19:32:20 +00:00
|
|
|
|
2017-11-10 09:33:59 +00:00
|
|
|
implementation 'com.google.code.gson:gson:2.8.2'
|
2017-11-10 14:36:13 +00:00
|
|
|
implementation 'ch.acra:acra:4.9.2'
|
2017-04-26 19:32:20 +00:00
|
|
|
|
2017-11-10 09:33:59 +00: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 13:39:24 +00:00
|
|
|
implementation 'com.nononsenseapps:filepicker:4.2.1'
|
2018-03-16 06:42:46 +00:00
|
|
|
implementation "com.google.android.exoplayer:exoplayer:$exoPlayerLibVersion"
|
|
|
|
implementation "com.google.android.exoplayer:extension-mediasession:$exoPlayerLibVersion"
|
2017-08-07 13:02:30 +00:00
|
|
|
|
2018-03-21 07:11:54 +00:00
|
|
|
debugImplementation "com.facebook.stetho:stetho:$stethoLibVersion"
|
|
|
|
debugImplementation "com.facebook.stetho:stetho-urlconnection:$stethoLibVersion"
|
2018-03-14 04:45:44 +00:00
|
|
|
debugImplementation 'com.android.support:multidex:1.0.3'
|
2017-08-07 13:02:30 +00:00
|
|
|
|
2018-03-16 06:42:46 +00:00
|
|
|
implementation 'io.reactivex.rxjava2:rxjava:2.1.10'
|
|
|
|
implementation 'io.reactivex.rxjava2:rxandroid:2.0.2'
|
|
|
|
implementation 'com.jakewharton.rxbinding2:rxbinding:2.1.1'
|
2017-09-03 06:04:18 +00:00
|
|
|
|
2018-03-16 06:42:46 +00:00
|
|
|
implementation "android.arch.persistence.room:runtime:$roomDbLibVersion"
|
|
|
|
implementation "android.arch.persistence.room:rxjava2:$roomDbLibVersion"
|
|
|
|
annotationProcessor "android.arch.persistence.room:compiler:$roomDbLibVersion"
|
2017-09-03 06:04:18 +00:00
|
|
|
|
2018-03-21 07:11:54 +00:00
|
|
|
implementation "frankiesardo:icepick:$icepickLibVersion"
|
|
|
|
annotationProcessor "frankiesardo:icepick-processor:$icepickLibVersion"
|
2018-02-08 20:46:54 +00:00
|
|
|
|
2018-03-21 07:11:54 +00:00
|
|
|
debugImplementation "com.squareup.leakcanary:leakcanary-android:$leakCanaryLibVersion"
|
|
|
|
releaseImplementation "com.squareup.leakcanary:leakcanary-android-no-op:$leakCanaryLibVersion"
|
2018-02-20 15:24:43 +00:00
|
|
|
|
|
|
|
implementation 'com.squareup.okhttp3:okhttp:3.9.1'
|
2018-03-21 07:11:54 +00:00
|
|
|
debugImplementation "com.facebook.stetho:stetho-okhttp3:$okHttpLibVersion"
|
2015-09-04 00:15:03 +00:00
|
|
|
}
|