2020-06-25 16:57:13 +02:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
2020-06-26 18:17:17 +02:00
|
|
|
apply plugin: "androidx.navigation.safeargs"
|
|
|
|
|
2020-06-25 16:57:13 +02:00
|
|
|
android {
|
|
|
|
compileSdkVersion 29
|
|
|
|
buildToolsVersion "29.0.3"
|
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
applicationId "app.fedilab.fedilabtube"
|
2020-06-29 17:59:36 +02:00
|
|
|
minSdkVersion 21
|
2020-06-25 16:57:13 +02:00
|
|
|
targetSdkVersion 29
|
2020-07-24 08:53:16 +02:00
|
|
|
versionCode 3
|
|
|
|
versionName "1.0.2"
|
2020-06-26 18:17:17 +02:00
|
|
|
multiDexEnabled true
|
2020-06-25 16:57:13 +02:00
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
|
|
}
|
2020-06-26 19:16:00 +02:00
|
|
|
dexOptions {
|
|
|
|
javaMaxHeapSize "4g"
|
|
|
|
}
|
2020-06-25 16:57:13 +02:00
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled false
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
}
|
2020-06-26 14:34:39 +02:00
|
|
|
compileOptions {
|
|
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
|
|
|
maven { url "https://jitpack.io" }
|
|
|
|
maven { url "https://maven.google.com"}
|
|
|
|
}
|
2020-06-25 16:57:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2020-06-26 18:17:17 +02:00
|
|
|
implementation "androidx.multidex:multidex:2.0.1"
|
2020-06-25 16:57:13 +02:00
|
|
|
implementation fileTree(dir: "libs", include: ["*.jar"])
|
2020-09-03 18:56:28 +02:00
|
|
|
implementation 'androidx.appcompat:appcompat:1.2.0'
|
|
|
|
implementation 'com.google.android.material:material:1.2.0'
|
2020-06-25 16:57:13 +02:00
|
|
|
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
|
|
|
|
implementation 'androidx.vectordrawable:vectordrawable:1.1.0'
|
2020-06-26 14:34:39 +02:00
|
|
|
implementation 'androidx.navigation:navigation-fragment:2.3.0'
|
2020-06-26 18:17:17 +02:00
|
|
|
implementation "androidx.fragment:fragment:1.2.5"
|
2020-06-26 14:34:39 +02:00
|
|
|
implementation 'androidx.navigation:navigation-ui:2.3.0'
|
2020-06-26 18:17:17 +02:00
|
|
|
implementation ("androidx.navigation:navigation-dynamic-features-fragment:2.3.0")
|
2020-06-26 14:34:39 +02:00
|
|
|
implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0'
|
|
|
|
implementation 'androidx.browser:browser:1.2.0'
|
|
|
|
testImplementation 'junit:junit:4.13'
|
2020-06-25 16:57:13 +02:00
|
|
|
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
|
|
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
|
|
|
|
|
2020-06-26 19:16:00 +02:00
|
|
|
implementation 'androidx.localbroadcastmanager:localbroadcastmanager:1.0.0'
|
2020-06-26 14:34:39 +02:00
|
|
|
implementation 'com.github.GrenderG:Toasty:1.4.2'
|
|
|
|
implementation 'com.google.android.exoplayer:exoplayer:2.10.6'
|
|
|
|
implementation "com.github.mabbas007:TagsEditText:1.0.5"
|
|
|
|
implementation "com.github.bumptech.glide:glide:4.11.0"
|
2020-06-27 19:08:52 +02:00
|
|
|
annotationProcessor "com.github.bumptech.glide:compiler:4.11.0"
|
2020-06-26 14:34:39 +02:00
|
|
|
implementation "androidx.swiperefreshlayout:swiperefreshlayout:1.1.0"
|
|
|
|
implementation 'org.apache.poi:poi:3.16'
|
|
|
|
implementation "net.gotev:uploadservice:3.5.2"
|
|
|
|
implementation "net.gotev:uploadservice-okhttp:3.5.2"
|
|
|
|
implementation "com.google.code.gson:gson:2.8.6"
|
2020-06-25 16:57:13 +02:00
|
|
|
}
|