Files
baresip-studio/app/build.gradle
Juha Heinanen 613e92e868 - Resume baresip application to the activity that was stopped.
- Add example contact when baresip is started the first time.
- Fixed showing of new message in the chats and messages list.
2019-03-16 08:32:16 +02:00

57 lines
1.4 KiB
Groovy

apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
android {
compileSdkVersion = 27
defaultConfig {
applicationId = 'com.tutpro.baresip'
minSdkVersion 21
targetSdkVersion 27
versionCode = 47
versionName = '6.0.1'
externalNativeBuild {
cmake {
cFlags '-DHAVE_INTTYPES_H'
}
}
ndk {
abiFilters 'armeabi-v7a', 'arm64-v8a'
}
}
splits {
abi {
reset()
include 'armeabi-v7a', 'arm64-v8a'
}
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'),
'proguard-rules.pro'
}
}
sourceSets {
main.java.srcDirs += 'src/main/kotlin'
}
externalNativeBuild {
cmake {
path 'src/main/cpp/CMakeLists.txt'
}
}
}
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'com.android.support:appcompat-v7:27.1.1'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation 'com.android.support:design:27.1.1'
}
repositories {
mavenCentral()
}
apply plugin: 'kotlin-android-extensions'