This project contains source code of Stickerpipe Android SDK, GCM integration module and integration sample. You can find complete integration documentation and sample here
To clone project with submodules, use next command
git clone --recursive
If you want add stickerfactory module to your existing project, follow next steps
- add stickerfactory repository as submodules
git submodule add https://github.com/908Inc/stickerfactory.git
- at settings.gradle add
include ':app', 'stickerfactory'
- at root build.gradle add retrolambda and variables
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.2.2'
classpath 'me.tatarka:gradle-retrolambda:3.1.0'
}
}
allprojects {
repositories {
jcenter()
}
}
ext.sdkVersionName = "0.14.4"
ext.minifyEnableMode = true
ext.groupName = "vc908.stickers"
ext.artifactoryUrl = ""
ext.artifactoryUsername = ""
ext.artifactoryPass = ""
- At project app build.gradle add dependency
dependencies {
...
compile project(':stickerfactory')
}
Stickerpipe is available under the Apache 2 license. See the LICENSE file for more information.