1
0
mirror of https://github.com/TeamNewPipe/NewPipe synced 2024-06-18 11:20:00 +00:00
NewPipe/app/build.gradle

90 lines
3.0 KiB
Groovy
Raw Normal View History

2015-09-04 00:15:03 +00:00
apply plugin: 'com.android.application'
android {
2017-11-10 09:33:59 +00:00
compileSdkVersion 27
buildToolsVersion '27.0.1'
2015-09-04 00:15:03 +00:00
defaultConfig {
applicationId "org.schabi.newpipe"
minSdkVersion 15
2017-11-10 09:33:59 +00:00
targetSdkVersion 27
2017-12-06 13:49:48 +00:00
versionCode 42
versionName "0.11.1"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
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'
}
debug {
multiDexEnabled true
debuggable true
applicationIdSuffix ".debug"
}
beta {
2017-11-10 09:33:59 +00:00
minifyEnabled true
shrinkResources true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
applicationIdSuffix ".beta"
}
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 {
sourceCompatibility JavaVersion.VERSION_1_7
targetCompatibility JavaVersion.VERSION_1_7
}
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') {
exclude module: 'support-annotations'
}
2017-12-06 13:29:26 +00:00
implementation 'com.github.TeamNewPipe:NewPipeExtractor:a5ba4828'
2017-11-10 09:33:59 +00:00
testImplementation 'junit:junit:4.12'
testImplementation 'org.mockito:mockito-core:1.10.19'
2017-11-10 20:31:19 +00:00
implementation 'com.android.support:appcompat-v7:27.0.1'
implementation 'com.android.support:support-v4:27.0.1'
implementation 'com.android.support:design:27.0.1'
implementation 'com.android.support:recyclerview-v7:27.0.1'
implementation 'com.android.support:preference-v14:27.0.1'
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'
implementation 'com.nononsenseapps:filepicker:3.0.1'
implementation 'com.google.android.exoplayer:exoplayer:r2.5.4'
2017-11-10 09:33:59 +00: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-11-10 09:33:59 +00:00
implementation 'io.reactivex.rxjava2:rxjava:2.1.6'
implementation 'io.reactivex.rxjava2:rxandroid:2.0.1'
implementation 'com.jakewharton.rxbinding2:rxbinding:2.0.0'
2017-11-10 09:33:59 +00: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-11-10 09:33:59 +00:00
implementation 'frankiesardo:icepick:3.2.0'
annotationProcessor 'frankiesardo:icepick-processor:3.2.0'
2015-09-04 00:15:03 +00:00
}