apply plugin: 'com.android.application' apply plugin: "androidx.navigation.safeargs" android { compileSdkVersion 29 buildToolsVersion "29.0.3" defaultConfig { applicationId "app.fedilab.fedilabtube" minSdkVersion 21 targetSdkVersion 29 versionCode 1 versionName "1.0.0" multiDexEnabled true testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" } dexOptions { javaMaxHeapSize "4g" } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' } } compileOptions { sourceCompatibility JavaVersion.VERSION_1_8 targetCompatibility JavaVersion.VERSION_1_8 } } allprojects { repositories { maven { url "https://jitpack.io" } maven { url "https://maven.google.com"} } } dependencies { implementation "androidx.multidex:multidex:2.0.1" implementation fileTree(dir: "libs", include: ["*.jar"]) implementation 'androidx.appcompat:appcompat:1.1.0' implementation 'com.google.android.material:material:1.1.0' implementation 'androidx.constraintlayout:constraintlayout:1.1.3' implementation 'androidx.vectordrawable:vectordrawable:1.1.0' implementation 'androidx.navigation:navigation-fragment:2.3.0' implementation "androidx.fragment:fragment:1.2.5" implementation 'androidx.navigation:navigation-ui:2.3.0' implementation ("androidx.navigation:navigation-dynamic-features-fragment:2.3.0") implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0' implementation 'androidx.browser:browser:1.2.0' testImplementation 'junit:junit:4.13' androidTestImplementation 'androidx.test.ext:junit:1.1.1' androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0' implementation 'androidx.localbroadcastmanager:localbroadcastmanager:1.0.0' 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" annotationProcessor "com.github.bumptech.glide:compiler:4.11.0" 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" }