apply plugin: 'com.android.application'
|
|
android {
|
compileSdkVersion 28
|
defaultConfig {
|
applicationId "org.linphone.sample"
|
minSdkVersion 21
|
targetSdkVersion 28
|
versionCode 1
|
versionName "1.0"
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
}
|
buildTypes {
|
release {
|
minifyEnabled false
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
}
|
}
|
}
|
|
repositories {
|
maven {
|
// Replace snapshots by releases for releases !
|
url "https://linphone.org/snapshots/maven_repository"
|
}
|
}
|
|
dependencies {
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
implementation 'androidx.appcompat:appcompat:1.0.2'
|
testImplementation 'junit:junit:4.12'
|
androidTestImplementation 'androidx.test:runner:1.1.1'
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1'
|
|
implementation "org.linphone:linphone-sdk-android:4.2+"
|
}
|