├── .gitignore ├── .travis.yml ├── LICENSE.txt ├── README.md ├── art ├── json2notification-1618.png ├── json2notification-2-square-blue-xxxhdpi.png ├── json2notification.png ├── json2notification.svg └── screenshot.jpg ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── json2notification-app ├── build.gradle └── src │ └── main │ ├── AndroidManifest.xml │ ├── assets │ └── wiki.json │ ├── java │ └── json2notification │ │ └── app │ │ ├── App.java │ │ └── MainActivity.java │ └── res │ ├── drawable-hdpi │ └── ic_launcher.png │ ├── drawable-mdpi │ └── ic_launcher.png │ ├── drawable-xhdpi │ └── ic_launcher.png │ ├── drawable-xxhdpi │ └── ic_launcher.png │ ├── layout │ └── activity_main.xml │ ├── mipmap-hdpi │ └── ic_launcher.png │ ├── mipmap-mdpi │ └── ic_launcher.png │ ├── mipmap-xhdpi │ └── ic_launcher.png │ ├── mipmap-xxhdpi │ └── ic_launcher.png │ ├── mipmap-xxxhdpi │ └── ic_launcher.png │ └── values │ ├── strings.xml │ └── styles.xml ├── json2notification ├── bintray.gradle ├── build.gradle ├── git-version.gradle ├── jacoco.gradle ├── javadoc.gradle └── src │ ├── main │ ├── AndroidManifest.xml │ └── java │ │ ├── com │ │ └── bluelinelabs │ │ │ └── logansquare │ │ │ ├── models │ │ │ ├── SimpleBigPictureStyle.java │ │ │ ├── SimpleIntent.java │ │ │ ├── SimpleNotification.java │ │ │ └── SimplePendingIntent.java │ │ │ └── typeconverters │ │ │ ├── BigPictureStyleConverter.java │ │ │ ├── Bitmaps.java │ │ │ ├── IntentConverter.java │ │ │ ├── NotificationConverter.java │ │ │ ├── PendingIntentConverter.java │ │ │ └── UriConverter.java │ │ └── json2notification │ │ ├── Json2Notification.java │ │ └── model │ │ ├── Android.java │ │ └── AndroidNotification.java │ └── test │ └── java │ └── json2notification │ └── MainTest.java └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8tory/json2notification/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8tory/json2notification/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8tory/json2notification/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8tory/json2notification/HEAD/README.md -------------------------------------------------------------------------------- /art/json2notification-1618.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8tory/json2notification/HEAD/art/json2notification-1618.png -------------------------------------------------------------------------------- /art/json2notification-2-square-blue-xxxhdpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8tory/json2notification/HEAD/art/json2notification-2-square-blue-xxxhdpi.png -------------------------------------------------------------------------------- /art/json2notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8tory/json2notification/HEAD/art/json2notification.png -------------------------------------------------------------------------------- /art/json2notification.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8tory/json2notification/HEAD/art/json2notification.svg -------------------------------------------------------------------------------- /art/screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8tory/json2notification/HEAD/art/screenshot.jpg -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8tory/json2notification/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8tory/json2notification/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8tory/json2notification/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8tory/json2notification/HEAD/gradlew.bat -------------------------------------------------------------------------------- /json2notification-app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8tory/json2notification/HEAD/json2notification-app/build.gradle -------------------------------------------------------------------------------- /json2notification-app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8tory/json2notification/HEAD/json2notification-app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /json2notification-app/src/main/assets/wiki.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8tory/json2notification/HEAD/json2notification-app/src/main/assets/wiki.json -------------------------------------------------------------------------------- /json2notification-app/src/main/java/json2notification/app/App.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8tory/json2notification/HEAD/json2notification-app/src/main/java/json2notification/app/App.java -------------------------------------------------------------------------------- /json2notification-app/src/main/java/json2notification/app/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8tory/json2notification/HEAD/json2notification-app/src/main/java/json2notification/app/MainActivity.java -------------------------------------------------------------------------------- /json2notification-app/src/main/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8tory/json2notification/HEAD/json2notification-app/src/main/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /json2notification-app/src/main/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8tory/json2notification/HEAD/json2notification-app/src/main/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /json2notification-app/src/main/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8tory/json2notification/HEAD/json2notification-app/src/main/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /json2notification-app/src/main/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8tory/json2notification/HEAD/json2notification-app/src/main/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /json2notification-app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8tory/json2notification/HEAD/json2notification-app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /json2notification-app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8tory/json2notification/HEAD/json2notification-app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /json2notification-app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8tory/json2notification/HEAD/json2notification-app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /json2notification-app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8tory/json2notification/HEAD/json2notification-app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /json2notification-app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8tory/json2notification/HEAD/json2notification-app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /json2notification-app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8tory/json2notification/HEAD/json2notification-app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /json2notification-app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8tory/json2notification/HEAD/json2notification-app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /json2notification-app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8tory/json2notification/HEAD/json2notification-app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /json2notification/bintray.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8tory/json2notification/HEAD/json2notification/bintray.gradle -------------------------------------------------------------------------------- /json2notification/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8tory/json2notification/HEAD/json2notification/build.gradle -------------------------------------------------------------------------------- /json2notification/git-version.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8tory/json2notification/HEAD/json2notification/git-version.gradle -------------------------------------------------------------------------------- /json2notification/jacoco.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8tory/json2notification/HEAD/json2notification/jacoco.gradle -------------------------------------------------------------------------------- /json2notification/javadoc.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8tory/json2notification/HEAD/json2notification/javadoc.gradle -------------------------------------------------------------------------------- /json2notification/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8tory/json2notification/HEAD/json2notification/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /json2notification/src/main/java/com/bluelinelabs/logansquare/models/SimpleBigPictureStyle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8tory/json2notification/HEAD/json2notification/src/main/java/com/bluelinelabs/logansquare/models/SimpleBigPictureStyle.java -------------------------------------------------------------------------------- /json2notification/src/main/java/com/bluelinelabs/logansquare/models/SimpleIntent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8tory/json2notification/HEAD/json2notification/src/main/java/com/bluelinelabs/logansquare/models/SimpleIntent.java -------------------------------------------------------------------------------- /json2notification/src/main/java/com/bluelinelabs/logansquare/models/SimpleNotification.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8tory/json2notification/HEAD/json2notification/src/main/java/com/bluelinelabs/logansquare/models/SimpleNotification.java -------------------------------------------------------------------------------- /json2notification/src/main/java/com/bluelinelabs/logansquare/models/SimplePendingIntent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8tory/json2notification/HEAD/json2notification/src/main/java/com/bluelinelabs/logansquare/models/SimplePendingIntent.java -------------------------------------------------------------------------------- /json2notification/src/main/java/com/bluelinelabs/logansquare/typeconverters/BigPictureStyleConverter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8tory/json2notification/HEAD/json2notification/src/main/java/com/bluelinelabs/logansquare/typeconverters/BigPictureStyleConverter.java -------------------------------------------------------------------------------- /json2notification/src/main/java/com/bluelinelabs/logansquare/typeconverters/Bitmaps.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8tory/json2notification/HEAD/json2notification/src/main/java/com/bluelinelabs/logansquare/typeconverters/Bitmaps.java -------------------------------------------------------------------------------- /json2notification/src/main/java/com/bluelinelabs/logansquare/typeconverters/IntentConverter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8tory/json2notification/HEAD/json2notification/src/main/java/com/bluelinelabs/logansquare/typeconverters/IntentConverter.java -------------------------------------------------------------------------------- /json2notification/src/main/java/com/bluelinelabs/logansquare/typeconverters/NotificationConverter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8tory/json2notification/HEAD/json2notification/src/main/java/com/bluelinelabs/logansquare/typeconverters/NotificationConverter.java -------------------------------------------------------------------------------- /json2notification/src/main/java/com/bluelinelabs/logansquare/typeconverters/PendingIntentConverter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8tory/json2notification/HEAD/json2notification/src/main/java/com/bluelinelabs/logansquare/typeconverters/PendingIntentConverter.java -------------------------------------------------------------------------------- /json2notification/src/main/java/com/bluelinelabs/logansquare/typeconverters/UriConverter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8tory/json2notification/HEAD/json2notification/src/main/java/com/bluelinelabs/logansquare/typeconverters/UriConverter.java -------------------------------------------------------------------------------- /json2notification/src/main/java/json2notification/Json2Notification.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8tory/json2notification/HEAD/json2notification/src/main/java/json2notification/Json2Notification.java -------------------------------------------------------------------------------- /json2notification/src/main/java/json2notification/model/Android.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8tory/json2notification/HEAD/json2notification/src/main/java/json2notification/model/Android.java -------------------------------------------------------------------------------- /json2notification/src/main/java/json2notification/model/AndroidNotification.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8tory/json2notification/HEAD/json2notification/src/main/java/json2notification/model/AndroidNotification.java -------------------------------------------------------------------------------- /json2notification/src/test/java/json2notification/MainTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8tory/json2notification/HEAD/json2notification/src/test/java/json2notification/MainTest.java -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8tory/json2notification/HEAD/settings.gradle --------------------------------------------------------------------------------