apply plugin: 'com.android.application'
android {
compileSdkVersion 29 buildToolsVersion "29.0.2" defaultConfig {
applicationId "com.mhshasan.yojana" minSdkVersion 19 targetSdkVersion 29 multiDexEnabled true versionCode 7 versionName "7.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" }
buildTypes {
release {
minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' }
}
}
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'androidx.appcompat:appcompat:1.1.0' implementation 'androidx.constraintlayout:constraintlayout:1.1.3' androidTestImplementation('androidx.test.espresso:espresso-core:3.2.0', {
exclude group: 'com.android.support', module: 'support-annotations'
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'androidx.appcompat:appcompat:1.1.0' implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
androidTestImplementation 'androidx.test.ext:junit:1.1.1' implementation 'androidx.core:core:1.1.0' implementation 'com.google.android.material:material:1.0.0' implementation 'com.google.android.gms:play-services-ads:18.3.0' implementation 'androidx.vectordrawable:vectordrawable-animated:1.1.0' implementation 'androidx.browser:browser:1.0.0' implementation 'androidx.media:media:1.1.0' implementation 'androidx.legacy:legacy-support-v4:1.0.0' implementation 'androidx.recyclerview:recyclerview:1.1.0' implementation 'androidx.cardview:cardview:1.0.0' implementation 'de.hdodenhof:circleimageview:1.3.0' implementation 'com.rengwuxian.materialedittext:library:2.1.4'
implementation 'androidx.multidex:multidex:2.0.1'
implementation 'com.google.firebase:firebase-ads:18.3.0' implementation 'com.github.barteksc:android-pdf-viewer:3.0.0-beta.4' implementation 'com.rengwuxian.materialedittext:library:2.1.4' implementation 'com.pixplicity.letterpress:library:1.0' debugImplementation 'com.squareup.leakcanary:leakcanary-android:1.6.3' releaseImplementation 'com.squareup.leakcanary:leakcanary-android-no-op:1.6.3' implementation 'androidx.browser:browser:1.0.0' testImplementation 'junit:junit:4.12'
})
}
Comments
Post a Comment