... basiert auf Conversations und ist ein Open Source XMPP/Jabber Messenger für Android
https://codeberg.org/kriztan
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
569 B
30 lines
569 B
buildscript { |
|
repositories { |
|
jcenter() |
|
} |
|
} |
|
|
|
apply plugin: 'com.android.library' |
|
|
|
dependencies { |
|
implementation 'androidx.legacy:legacy-support-v13:1.0.0' |
|
} |
|
|
|
android { |
|
compileSdkVersion 28 |
|
buildToolsVersion '28.0.3' |
|
|
|
defaultConfig { |
|
minSdkVersion 18 |
|
targetSdkVersion 28 |
|
} |
|
|
|
buildTypes { |
|
release { |
|
zipAlignEnabled true |
|
minifyEnabled true |
|
shrinkResources false |
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' |
|
} |
|
} |
|
} |