├── .gitignore ├── CHANGELOG.md ├── LICENSE.txt ├── README.md ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── library ├── AndroidManifest.xml ├── build.gradle ├── gradle.properties ├── pom.xml ├── project.properties ├── res │ ├── layout │ │ └── app_msg.xml │ └── values │ │ └── colors.xml └── src │ └── com │ └── devspark │ └── appmsg │ ├── AppMsg.java │ └── MsgManager.java ├── sample ├── AndroidManifest.xml ├── build.gradle ├── ic_launcher-web.png ├── project.properties ├── res │ ├── drawable-hdpi │ │ ├── ic_action_cancel.png │ │ └── ic_launcher.png │ ├── drawable-ldpi │ │ ├── ic_action_cancel.png │ │ └── ic_launcher.png │ ├── drawable-mdpi │ │ ├── ic_action_cancel.png │ │ └── ic_launcher.png │ ├── drawable-xhdpi │ │ ├── ic_action_cancel.png │ │ └── ic_launcher.png │ ├── drawable │ │ └── ic_action_cancel_inset.xml │ ├── layout │ │ ├── activity_main.xml │ │ └── sticky.xml │ ├── values-v11 │ │ └── styles.xml │ └── values │ │ ├── arrays.xml │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── styles.xml └── src │ └── com │ └── devspark │ └── appmsg │ └── sample │ └── MainActivity.java └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnkil/Android-AppMsg/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnkil/Android-AppMsg/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnkil/Android-AppMsg/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnkil/Android-AppMsg/HEAD/README.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnkil/Android-AppMsg/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnkil/Android-AppMsg/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnkil/Android-AppMsg/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnkil/Android-AppMsg/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnkil/Android-AppMsg/HEAD/gradlew.bat -------------------------------------------------------------------------------- /library/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnkil/Android-AppMsg/HEAD/library/AndroidManifest.xml -------------------------------------------------------------------------------- /library/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnkil/Android-AppMsg/HEAD/library/build.gradle -------------------------------------------------------------------------------- /library/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnkil/Android-AppMsg/HEAD/library/gradle.properties -------------------------------------------------------------------------------- /library/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnkil/Android-AppMsg/HEAD/library/pom.xml -------------------------------------------------------------------------------- /library/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnkil/Android-AppMsg/HEAD/library/project.properties -------------------------------------------------------------------------------- /library/res/layout/app_msg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnkil/Android-AppMsg/HEAD/library/res/layout/app_msg.xml -------------------------------------------------------------------------------- /library/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnkil/Android-AppMsg/HEAD/library/res/values/colors.xml -------------------------------------------------------------------------------- /library/src/com/devspark/appmsg/AppMsg.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnkil/Android-AppMsg/HEAD/library/src/com/devspark/appmsg/AppMsg.java -------------------------------------------------------------------------------- /library/src/com/devspark/appmsg/MsgManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnkil/Android-AppMsg/HEAD/library/src/com/devspark/appmsg/MsgManager.java -------------------------------------------------------------------------------- /sample/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnkil/Android-AppMsg/HEAD/sample/AndroidManifest.xml -------------------------------------------------------------------------------- /sample/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnkil/Android-AppMsg/HEAD/sample/build.gradle -------------------------------------------------------------------------------- /sample/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnkil/Android-AppMsg/HEAD/sample/ic_launcher-web.png -------------------------------------------------------------------------------- /sample/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnkil/Android-AppMsg/HEAD/sample/project.properties -------------------------------------------------------------------------------- /sample/res/drawable-hdpi/ic_action_cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnkil/Android-AppMsg/HEAD/sample/res/drawable-hdpi/ic_action_cancel.png -------------------------------------------------------------------------------- /sample/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnkil/Android-AppMsg/HEAD/sample/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/res/drawable-ldpi/ic_action_cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnkil/Android-AppMsg/HEAD/sample/res/drawable-ldpi/ic_action_cancel.png -------------------------------------------------------------------------------- /sample/res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnkil/Android-AppMsg/HEAD/sample/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/res/drawable-mdpi/ic_action_cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnkil/Android-AppMsg/HEAD/sample/res/drawable-mdpi/ic_action_cancel.png -------------------------------------------------------------------------------- /sample/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnkil/Android-AppMsg/HEAD/sample/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/res/drawable-xhdpi/ic_action_cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnkil/Android-AppMsg/HEAD/sample/res/drawable-xhdpi/ic_action_cancel.png -------------------------------------------------------------------------------- /sample/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnkil/Android-AppMsg/HEAD/sample/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/res/drawable/ic_action_cancel_inset.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnkil/Android-AppMsg/HEAD/sample/res/drawable/ic_action_cancel_inset.xml -------------------------------------------------------------------------------- /sample/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnkil/Android-AppMsg/HEAD/sample/res/layout/activity_main.xml -------------------------------------------------------------------------------- /sample/res/layout/sticky.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnkil/Android-AppMsg/HEAD/sample/res/layout/sticky.xml -------------------------------------------------------------------------------- /sample/res/values-v11/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnkil/Android-AppMsg/HEAD/sample/res/values-v11/styles.xml -------------------------------------------------------------------------------- /sample/res/values/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnkil/Android-AppMsg/HEAD/sample/res/values/arrays.xml -------------------------------------------------------------------------------- /sample/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnkil/Android-AppMsg/HEAD/sample/res/values/colors.xml -------------------------------------------------------------------------------- /sample/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnkil/Android-AppMsg/HEAD/sample/res/values/strings.xml -------------------------------------------------------------------------------- /sample/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnkil/Android-AppMsg/HEAD/sample/res/values/styles.xml -------------------------------------------------------------------------------- /sample/src/com/devspark/appmsg/sample/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnkil/Android-AppMsg/HEAD/sample/src/com/devspark/appmsg/sample/MainActivity.java -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnkil/Android-AppMsg/HEAD/settings.gradle --------------------------------------------------------------------------------