c7be127b5c
- Groups can now have multiple administrators with the ability to edit the name and logo, and add and remove members. - Groups that have reached their capacity of 200 users can be upgraded to supergroups of up to 1,000 members. - Channels got a new Quick Share button right next to messages.
89 lines
2.0 KiB
Groovy
89 lines
2.0 KiB
Groovy
apply plugin: 'com.android.application'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
compile 'com.android.support:support-v4:23.1.+'
|
|
compile 'com.google.android.gms:play-services:3.2.+'
|
|
compile 'net.hockeyapp.android:HockeySDK:3.6.+'
|
|
compile 'com.googlecode.mp4parser:isoparser:1.0.+'
|
|
}
|
|
|
|
android {
|
|
compileSdkVersion 23
|
|
buildToolsVersion '23.0.2'
|
|
|
|
useLibrary 'org.apache.http.legacy'
|
|
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_7
|
|
targetCompatibility JavaVersion.VERSION_1_7
|
|
}
|
|
|
|
signingConfigs {
|
|
debug {
|
|
storeFile file("config/debug.keystore")
|
|
}
|
|
|
|
release {
|
|
storeFile file("config/release.keystore")
|
|
storePassword RELEASE_STORE_PASSWORD
|
|
keyAlias RELEASE_KEY_ALIAS
|
|
keyPassword RELEASE_KEY_PASSWORD
|
|
}
|
|
}
|
|
|
|
buildTypes {
|
|
debug {
|
|
debuggable true
|
|
jniDebuggable true
|
|
signingConfig signingConfigs.debug
|
|
applicationIdSuffix ".beta"
|
|
}
|
|
|
|
release {
|
|
debuggable false
|
|
jniDebuggable false
|
|
//signingConfig signingConfigs.release
|
|
}
|
|
|
|
foss {
|
|
debuggable false
|
|
jniDebuggable false
|
|
signingConfig signingConfigs.release
|
|
}
|
|
}
|
|
|
|
sourceSets.main {
|
|
jniLibs.srcDir 'libs'
|
|
jni.srcDirs = [] //disable automatic ndk-build call
|
|
}
|
|
|
|
sourceSets.debug {
|
|
manifest.srcFile 'config/debug/AndroidManifest.xml'
|
|
}
|
|
|
|
sourceSets.release {
|
|
manifest.srcFile 'config/release/AndroidManifest.xml'
|
|
}
|
|
|
|
sourceSets.foss {
|
|
manifest.srcFile 'config/foss/AndroidManifest.xml'
|
|
}
|
|
|
|
lintOptions {
|
|
checkReleaseBuilds false
|
|
abortOnError false
|
|
}
|
|
|
|
defaultConfig {
|
|
applicationId "org.telegram.plus"
|
|
minSdkVersion 8
|
|
targetSdkVersion 23
|
|
versionCode 686
|
|
versionName "3.3.1.0"
|
|
}
|
|
}
|