Skip to content

Instantly share code, notes, and snippets.

@Abhi1code
Created April 10, 2020 18:23
Show Gist options
  • Save Abhi1code/90c57f0748d7f99878273aa12549ff8e to your computer and use it in GitHub Desktop.
Save Abhi1code/90c57f0748d7f99878273aa12549ff8e to your computer and use it in GitHub Desktop.
apply plugin: 'com.android.application'
android {
compileSdkVersion 29
buildToolsVersion "29.0.2"
defaultConfig {
applicationId "com.matr..."
minSdkVersion 21
targetSdkVersion 29
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'androidx.appcompat:appcompat:1.0.2'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
implementation 'com.mcxiaoke.volley:library:1.0.19'
implementation 'androidx.recyclerview:recyclerview:1.0.0'
implementation 'androidx.cardview:cardview:1.0.0'
implementation 'com.google.android.material:material:1.0.0'
implementation 'com.google.firebase:firebase-database:16.0.4'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
implementation 'org.webrtc:google-webrtc:1.0.22672'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test.ext:junit:1.1.0'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment