Skip to content

Instantly share code, notes, and snippets.

@casagrandebruno
Created February 22, 2017 18:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save casagrandebruno/0bb19f2567e52eaeeed60257b1fdef61 to your computer and use it in GitHub Desktop.
Save casagrandebruno/0bb19f2567e52eaeeed60257b1fdef61 to your computer and use it in GitHub Desktop.
Back4App - Example of Android App for Push Notifications using GCM (Inside-App)
apply plugin: 'com.android.application'
android {
compileSdkVersion 24
buildToolsVersion "24.0.1"
defaultConfig {
applicationId "com.example.back4app.pushnotificationtest"
minSdkVersion 15
targetSdkVersion 24
versionCode 1
versionName "1.0"
}
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:24.1.1'
compile 'com.parse.bolts:bolts-android:1.+'
compile 'com.parse:parse-android:1.+'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment