├── settings.gradle ├── NLSExample ├── build │ ├── incremental │ │ ├── aidl │ │ │ └── debug │ │ │ │ ├── dependency.store │ │ │ │ ├── inputs.data │ │ │ │ └── outputs.data │ │ ├── dex │ │ │ └── debug │ │ │ │ ├── outputs.data │ │ │ │ └── inputs.data │ │ ├── mergeAssets │ │ │ └── debug │ │ │ │ ├── inputs.data │ │ │ │ ├── outputs.data │ │ │ │ └── merger.xml │ │ └── mergeResources │ │ │ └── debug │ │ │ ├── outputs.data │ │ │ ├── inputs.data │ │ │ └── merger.xml │ ├── libs │ │ ├── NLSExample-debug.ap_ │ │ └── NLSExample-debug.dex │ ├── apk │ │ └── NLSExample-debug-unaligned.apk │ ├── classes │ │ └── debug │ │ │ └── com │ │ │ └── kpbird │ │ │ └── nlsexample │ │ │ ├── R.class │ │ │ ├── R$attr.class │ │ │ ├── R$id.class │ │ │ ├── R$menu.class │ │ │ ├── R$dimen.class │ │ │ ├── R$layout.class │ │ │ ├── R$string.class │ │ │ ├── R$style.class │ │ │ ├── BuildConfig.class │ │ │ ├── NLService.class │ │ │ ├── R$drawable.class │ │ │ ├── MainActivity.class │ │ │ ├── NLService$NLServiceReceiver.class │ │ │ └── MainActivity$NotificationReceiver.class │ ├── res │ │ └── all │ │ │ └── debug │ │ │ ├── drawable-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── values-sw720dp-land │ │ │ └── values.xml │ │ │ ├── menu │ │ │ └── main.xml │ │ │ ├── values-v11 │ │ │ └── values.xml │ │ │ ├── values-v14 │ │ │ └── values.xml │ │ │ ├── values │ │ │ └── values.xml │ │ │ └── layout │ │ │ └── activity_main.xml │ ├── source │ │ ├── buildConfig │ │ │ └── debug │ │ │ │ └── com │ │ │ │ └── kpbird │ │ │ │ └── nlsexample │ │ │ │ └── BuildConfig.java │ │ └── r │ │ │ └── debug │ │ │ └── com │ │ │ └── kpbird │ │ │ └── nlsexample │ │ │ └── R.java │ └── manifests │ │ └── debug │ │ └── AndroidManifest.xml ├── libs │ └── android-support-v4.jar ├── src │ └── main │ │ ├── ic_launcher-web.png │ │ ├── res │ │ ├── drawable-hdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xxhdpi │ │ │ └── ic_launcher.png │ │ ├── values-sw600dp │ │ │ └── dimens.xml │ │ ├── values │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ ├── menu │ │ │ └── main.xml │ │ ├── values-sw720dp-land │ │ │ └── dimens.xml │ │ ├── values-v11 │ │ │ └── styles.xml │ │ ├── values-v14 │ │ │ └── styles.xml │ │ └── layout │ │ │ └── activity_main.xml │ │ ├── AndroidManifest.xml │ │ └── java │ │ └── com │ │ └── kpbird │ │ └── nlsexample │ │ ├── MainActivity.java │ │ └── NLService.java ├── build.gradle └── NLSExample.iml ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── local.properties ├── NLSExampleProject.iml ├── README.md ├── gradlew.bat └── gradlew /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':NLSExample' 2 | -------------------------------------------------------------------------------- /NLSExample/build/incremental/aidl/debug/dependency.store: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpbird/NotificationListenerService-Example/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /NLSExample/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpbird/NotificationListenerService-Example/HEAD/NLSExample/libs/android-support-v4.jar -------------------------------------------------------------------------------- /NLSExample/src/main/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpbird/NotificationListenerService-Example/HEAD/NLSExample/src/main/ic_launcher-web.png -------------------------------------------------------------------------------- /NLSExample/build/libs/NLSExample-debug.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpbird/NotificationListenerService-Example/HEAD/NLSExample/build/libs/NLSExample-debug.ap_ -------------------------------------------------------------------------------- /NLSExample/build/libs/NLSExample-debug.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpbird/NotificationListenerService-Example/HEAD/NLSExample/build/libs/NLSExample-debug.dex -------------------------------------------------------------------------------- /NLSExample/build/incremental/aidl/debug/inputs.data: -------------------------------------------------------------------------------- 1 | # incremental data. DO NOT EDIT. 2 | # format is 3 | # Encoding is UTF-8 4 | -------------------------------------------------------------------------------- /NLSExample/build/incremental/aidl/debug/outputs.data: -------------------------------------------------------------------------------- 1 | # incremental data. DO NOT EDIT. 2 | # format is 3 | # Encoding is UTF-8 4 | -------------------------------------------------------------------------------- /NLSExample/build/incremental/dex/debug/outputs.data: -------------------------------------------------------------------------------- 1 | # incremental data. DO NOT EDIT. 2 | # format is 3 | # Encoding is UTF-8 4 | -------------------------------------------------------------------------------- /NLSExample/build/incremental/mergeAssets/debug/inputs.data: -------------------------------------------------------------------------------- 1 | # incremental data. DO NOT EDIT. 2 | # format is 3 | # Encoding is UTF-8 4 | -------------------------------------------------------------------------------- /NLSExample/build/incremental/mergeAssets/debug/outputs.data: -------------------------------------------------------------------------------- 1 | # incremental data. DO NOT EDIT. 2 | # format is 3 | # Encoding is UTF-8 4 | -------------------------------------------------------------------------------- /NLSExample/build/apk/NLSExample-debug-unaligned.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpbird/NotificationListenerService-Example/HEAD/NLSExample/build/apk/NLSExample-debug-unaligned.apk -------------------------------------------------------------------------------- /NLSExample/src/main/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpbird/NotificationListenerService-Example/HEAD/NLSExample/src/main/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /NLSExample/src/main/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpbird/NotificationListenerService-Example/HEAD/NLSExample/src/main/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /NLSExample/src/main/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpbird/NotificationListenerService-Example/HEAD/NLSExample/src/main/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /NLSExample/src/main/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpbird/NotificationListenerService-Example/HEAD/NLSExample/src/main/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /NLSExample/build/classes/debug/com/kpbird/nlsexample/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpbird/NotificationListenerService-Example/HEAD/NLSExample/build/classes/debug/com/kpbird/nlsexample/R.class -------------------------------------------------------------------------------- /NLSExample/build/res/all/debug/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpbird/NotificationListenerService-Example/HEAD/NLSExample/build/res/all/debug/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /NLSExample/build/res/all/debug/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpbird/NotificationListenerService-Example/HEAD/NLSExample/build/res/all/debug/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /NLSExample/build/res/all/debug/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpbird/NotificationListenerService-Example/HEAD/NLSExample/build/res/all/debug/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /NLSExample/build/res/all/debug/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpbird/NotificationListenerService-Example/HEAD/NLSExample/build/res/all/debug/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /NLSExample/build/classes/debug/com/kpbird/nlsexample/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpbird/NotificationListenerService-Example/HEAD/NLSExample/build/classes/debug/com/kpbird/nlsexample/R$attr.class -------------------------------------------------------------------------------- /NLSExample/build/classes/debug/com/kpbird/nlsexample/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpbird/NotificationListenerService-Example/HEAD/NLSExample/build/classes/debug/com/kpbird/nlsexample/R$id.class -------------------------------------------------------------------------------- /NLSExample/build/classes/debug/com/kpbird/nlsexample/R$menu.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpbird/NotificationListenerService-Example/HEAD/NLSExample/build/classes/debug/com/kpbird/nlsexample/R$menu.class -------------------------------------------------------------------------------- /NLSExample/build/classes/debug/com/kpbird/nlsexample/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpbird/NotificationListenerService-Example/HEAD/NLSExample/build/classes/debug/com/kpbird/nlsexample/R$dimen.class -------------------------------------------------------------------------------- /NLSExample/build/classes/debug/com/kpbird/nlsexample/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpbird/NotificationListenerService-Example/HEAD/NLSExample/build/classes/debug/com/kpbird/nlsexample/R$layout.class -------------------------------------------------------------------------------- /NLSExample/build/classes/debug/com/kpbird/nlsexample/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpbird/NotificationListenerService-Example/HEAD/NLSExample/build/classes/debug/com/kpbird/nlsexample/R$string.class -------------------------------------------------------------------------------- /NLSExample/build/classes/debug/com/kpbird/nlsexample/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpbird/NotificationListenerService-Example/HEAD/NLSExample/build/classes/debug/com/kpbird/nlsexample/R$style.class -------------------------------------------------------------------------------- /NLSExample/build/classes/debug/com/kpbird/nlsexample/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpbird/NotificationListenerService-Example/HEAD/NLSExample/build/classes/debug/com/kpbird/nlsexample/BuildConfig.class -------------------------------------------------------------------------------- /NLSExample/build/classes/debug/com/kpbird/nlsexample/NLService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpbird/NotificationListenerService-Example/HEAD/NLSExample/build/classes/debug/com/kpbird/nlsexample/NLService.class -------------------------------------------------------------------------------- /NLSExample/build/classes/debug/com/kpbird/nlsexample/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpbird/NotificationListenerService-Example/HEAD/NLSExample/build/classes/debug/com/kpbird/nlsexample/R$drawable.class -------------------------------------------------------------------------------- /NLSExample/build/classes/debug/com/kpbird/nlsexample/MainActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpbird/NotificationListenerService-Example/HEAD/NLSExample/build/classes/debug/com/kpbird/nlsexample/MainActivity.class -------------------------------------------------------------------------------- /NLSExample/src/main/res/values-sw600dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | -------------------------------------------------------------------------------- /NLSExample/build/classes/debug/com/kpbird/nlsexample/NLService$NLServiceReceiver.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpbird/NotificationListenerService-Example/HEAD/NLSExample/build/classes/debug/com/kpbird/nlsexample/NLService$NLServiceReceiver.class -------------------------------------------------------------------------------- /NLSExample/build/classes/debug/com/kpbird/nlsexample/MainActivity$NotificationReceiver.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kpbird/NotificationListenerService-Example/HEAD/NLSExample/build/classes/debug/com/kpbird/nlsexample/MainActivity$NotificationReceiver.class -------------------------------------------------------------------------------- /NLSExample/build/source/buildConfig/debug/com/kpbird/nlsexample/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** Automatically generated file. DO NOT MODIFY */ 2 | package com.kpbird.nlsexample; 3 | 4 | public final class BuildConfig { 5 | public final static boolean DEBUG = true; 6 | 7 | } -------------------------------------------------------------------------------- /NLSExample/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16dp 4 | 16dp 5 | 6 | -------------------------------------------------------------------------------- /NLSExample/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | NLSExample 5 | Settings 6 | Hello world! 7 | 8 | 9 | -------------------------------------------------------------------------------- /NLSExample/src/main/res/menu/main.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | # 2 | #Tue Jul 30 11:33:01 GMT+05:30 2013 3 | distributionBase=GRADLE_USER_HOME 4 | distributionPath=wrapper/dists 5 | zipStoreBase=GRADLE_USER_HOME 6 | zipStorePath=wrapper/dists 7 | distributionUrl=http\://services.gradle.org/distributions/gradle-1.6-bin.zip 8 | -------------------------------------------------------------------------------- /NLSExample/src/main/res/values-sw720dp-land/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 128dp 5 | 6 | -------------------------------------------------------------------------------- /NLSExample/build/res/all/debug/values-sw720dp-land/values.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 128dp 6 | 7 | 8 | -------------------------------------------------------------------------------- /NLSExample/build/res/all/debug/menu/main.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | -------------------------------------------------------------------------------- /NLSExample/build/res/all/debug/values-v11/values.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /NLSExample/src/main/res/values-v11/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /NLSExample/build/res/all/debug/values-v14/values.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /NLSExample/build/incremental/mergeAssets/debug/merger.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /NLSExample/src/main/res/values-v14/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /local.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Studio. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must *NOT* be checked into Version Control Systems, 5 | # as it contains information specific to your local configuration. 6 | 7 | # Location of the SDK. This is only used by Gradle. 8 | # For customization when using a Version Control System, please read the 9 | # header note. 10 | sdk.dir=/Applications/Android Studio.app/sdk -------------------------------------------------------------------------------- /NLSExampleProject.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /NLSExample/build.gradle: -------------------------------------------------------------------------------- 1 | buildscript { 2 | repositories { 3 | mavenCentral() 4 | } 5 | dependencies { 6 | classpath 'com.android.tools.build:gradle:0.5.+' 7 | } 8 | } 9 | apply plugin: 'android' 10 | 11 | repositories { 12 | mavenCentral() 13 | } 14 | 15 | dependencies { 16 | compile 'com.android.support:support-v4:13.0.+' 17 | } 18 | 19 | android { 20 | compileSdkVersion 18 21 | buildToolsVersion "17.0.0" 22 | 23 | defaultConfig { 24 | minSdkVersion 18 25 | targetSdkVersion 18 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /NLSExample/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 14 | 15 | 16 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /NLSExample/build/manifests/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /NLSExample/build/res/all/debug/values/values.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 16dp 6 | 16dp 7 | 8 | Settings 9 | NLSExample 10 | Hello world! 11 | 12 | 19 | 20 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /NLSExample/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 10 | 11 | 16 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | NotificationListenerService-Example 2 | =================================== 3 | 4 | ##Introduction 5 | NotificationListenerService is introduced in Android 4.3 (API 18). It allows an application to receive information about notifications as it creates or removes. NotificationListenerService class is derived from the Service class. It has two abstract methods namely 1. onNotificationPosted 2. onNotificationRemoved. 6 | To use NotificationListenerService, we need to create a java file which extends NotificationListenerService and implement two callback methods. Both methods have a parameter named "sbn", which is an object of StatusBarNotification class. StatusBarNotification provides necessary information about Notifications. 7 | NotificationListenerService provides facility to fetch active notifications using getActiveNotifications and also provides a feature to remove notifications using cancelAllNotifications. 8 | 9 | ##Useful Methods 10 | 1. NotificationListenerService 11 | * onNotificationPosted 12 | * onNotificationRemoved 13 | 2. StatusBarNotification 14 | * getId 15 | * getNotification 16 | * getPackageName 17 | * getPostTime 18 | * isClearable 19 | * isOngoing 20 | 21 | ##Note 22 | User require to enable notification permission from "Settings > Security > Notification access". 23 | 24 | ![Mou icon](http://1.bp.blogspot.com/-7Q9G72-ZLCw/UfirCZP-H_I/AAAAAAAAEOk/aqX_YHs6s6Q/s400/device-2013-07-31-113010.png) 25 | ![Mou icon](http://1.bp.blogspot.com/-h_bFIcDWWp8/UfirCzDrC_I/AAAAAAAAEO0/9_aMH5EM6Dg/s400/device-2013-07-31-113539.png) 26 | ![Mou icon](http://2.bp.blogspot.com/-thl_wNKzILI/UfirDX6NR2I/AAAAAAAAEO4/_o5FWLmkJ2o/s400/device-2013-07-31-113701.png) 27 | ![Mou icon](http://1.bp.blogspot.com/-5KyUJQVOVzE/UfirDhqpFzI/AAAAAAAAEPA/RiZoI9dF--Q/s400/device-2013-07-31-113720.png) -------------------------------------------------------------------------------- /NLSExample/build/incremental/mergeResources/debug/outputs.data: -------------------------------------------------------------------------------- 1 | # incremental data. DO NOT EDIT. 2 | # format is 3 | # Encoding is UTF-8 4 | 1375164276000 1153 19fb414767ef3e95f490d2191ef703cfdc9145b4 /Users/indianic/AndroidStudioProjects/NLSExampleProject/NLSExample/build/res/all/debug/values/values.xml 5 | 1375164277000 9487 7e58a59b9c3cf7a7a1df12376c329591dd31f5e4 /Users/indianic/AndroidStudioProjects/NLSExampleProject/NLSExample/build/res/all/debug/drawable-xhdpi/ic_launcher.png 6 | 1375164277000 18087 8d35b7c0e81c9caf7ee547905d69c9542a08b87f /Users/indianic/AndroidStudioProjects/NLSExampleProject/NLSExample/build/res/all/debug/drawable-xxhdpi/ic_launcher.png 7 | 1375418029000 2568 03da4271ddff0aaa1012b74b2382d8492bd6a384 /Users/indianic/AndroidStudioProjects/NLSExampleProject/NLSExample/build/res/all/debug/layout/activity_main.xml 8 | 1375164276000 3156 be9d6d2174e9cbaabca59e8090160434dbd60002 /Users/indianic/AndroidStudioProjects/NLSExampleProject/NLSExample/build/res/all/debug/drawable-mdpi/ic_launcher.png 9 | 1375164276000 329 5d0ebbcf9813eb7d63aeaffac4d5a5b48bb6544c /Users/indianic/AndroidStudioProjects/NLSExampleProject/NLSExample/build/res/all/debug/values-v11/values.xml 10 | 1375164276000 343 b635426a421d3204519f0ab9e08760f3b72c104e /Users/indianic/AndroidStudioProjects/NLSExampleProject/NLSExample/build/res/all/debug/values-v14/values.xml 11 | 1375164276000 357 2ec6987315e067c1c6c789592d82b151702c4bdc /Users/indianic/AndroidStudioProjects/NLSExampleProject/NLSExample/build/res/all/debug/menu/main.xml 12 | 1375164276000 6120 ced3785afb467e5670c9c7db0d3a345d15454ea5 /Users/indianic/AndroidStudioProjects/NLSExampleProject/NLSExample/build/res/all/debug/drawable-hdpi/ic_launcher.png 13 | 1375164276000 260 317d97737cd278f39d8ae42e85ff56dfe38c762a /Users/indianic/AndroidStudioProjects/NLSExampleProject/NLSExample/build/res/all/debug/values-sw720dp-land/values.xml 14 | -------------------------------------------------------------------------------- /NLSExample/build/incremental/mergeResources/debug/inputs.data: -------------------------------------------------------------------------------- 1 | # incremental data. DO NOT EDIT. 2 | # format is 3 | # Encoding is UTF-8 4 | 1375164183000 211 4e1904afba59d31e5cd6133f6a4c360fa9a5913f /Users/indianic/AndroidStudioProjects/NLSExampleProject/NLSExample/src/main/res/values/dimens.xml 5 | 1375164182000 7783 03172612ec7d8d2cc6295a185410c3e6501771aa /Users/indianic/AndroidStudioProjects/NLSExampleProject/NLSExample/src/main/res/drawable-hdpi/ic_launcher.png 6 | 1375164183000 181 84de2797380184d8b39af6f829afb092fb956173 /Users/indianic/AndroidStudioProjects/NLSExampleProject/NLSExample/src/main/res/values-sw600dp/dimens.xml 7 | 1375164183000 220 6f54a710c76f2d227dd64b48d04d4fed383c23e6 /Users/indianic/AndroidStudioProjects/NLSExampleProject/NLSExample/src/main/res/values/strings.xml 8 | 1375164182000 24780 6c2954bdacb8129ac00edfd084b98daf226518e3 /Users/indianic/AndroidStudioProjects/NLSExampleProject/NLSExample/src/main/res/drawable-xxhdpi/ic_launcher.png 9 | 1375418008000 2444 db8b3387601075757a6b88d627cb7a72de35c36c /Users/indianic/AndroidStudioProjects/NLSExampleProject/NLSExample/src/main/res/layout/activity_main.xml 10 | 1375164182000 3760 9d45e7de00dac30e9738dc369dece2835bf9677e /Users/indianic/AndroidStudioProjects/NLSExampleProject/NLSExample/src/main/res/drawable-mdpi/ic_launcher.png 11 | 1375164183000 381 b129b276e01126de5b3b753572ac67cbfc19454c /Users/indianic/AndroidStudioProjects/NLSExampleProject/NLSExample/src/main/res/values-v14/styles.xml 12 | 1375164183000 244 045ff451db7cd8e61285502b8c9bbf7405f2078d /Users/indianic/AndroidStudioProjects/NLSExampleProject/NLSExample/src/main/res/menu/main.xml 13 | 1375164183000 324 aa1f5f1723de9aee2669dc44a26fbc0ce776d35f /Users/indianic/AndroidStudioProjects/NLSExampleProject/NLSExample/src/main/res/values-v11/styles.xml 14 | 1375164182000 12356 75154d4f6e93c8832a74d3c27c8cf0d44672ea3e /Users/indianic/AndroidStudioProjects/NLSExampleProject/NLSExample/src/main/res/drawable-xhdpi/ic_launcher.png 15 | 1375164183000 254 25b6404e44acb50c82590049639d4fb5fefbac8e /Users/indianic/AndroidStudioProjects/NLSExampleProject/NLSExample/src/main/res/values-sw720dp-land/dimens.xml 16 | 1375164183000 680 c76f4caaa7a8dfe9727fa93001b3aee3b22d6716 /Users/indianic/AndroidStudioProjects/NLSExampleProject/NLSExample/src/main/res/values/styles.xml 17 | -------------------------------------------------------------------------------- /NLSExample/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- 1 | 10 | 11 |