Skip to content

Instantly share code, notes, and snippets.

@xzenon
Created July 26, 2016 15:44
Show Gist options
  • Save xzenon/ced23cfb55143a306dcaf40fd5dfc7dd to your computer and use it in GitHub Desktop.
Save xzenon/ced23cfb55143a306dcaf40fd5dfc7dd to your computer and use it in GitHub Desktop.
buildscript {
repositories {
jcenter()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.3.0'
}
}
repositories {
maven { url "https://oss.sonatype.org/content/repositories/releases/" }
jcenter()
mavenCentral()
}
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "23.0.1"
defaultConfig {
applicationId "im.xenon.messenger"
minSdkVersion 15
targetSdkVersion 23
versionCode 103
versionName "1.03"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.1.0'
compile 'im.actor:android-sdk:1.0.340'
compile 'im.actor:android-google-push:1.0.340'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment