gitextract_jbw4v8s9/ ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── demo/ │ ├── app/ │ │ ├── App_Resources/ │ │ │ ├── Android/ │ │ │ │ ├── app.gradle │ │ │ │ └── src/ │ │ │ │ └── main/ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ └── res/ │ │ │ │ ├── drawable-nodpi/ │ │ │ │ │ └── splash_screen.xml │ │ │ │ ├── values/ │ │ │ │ │ ├── colors.xml │ │ │ │ │ └── styles.xml │ │ │ │ └── values-v21/ │ │ │ │ ├── colors.xml │ │ │ │ └── styles.xml │ │ │ └── iOS/ │ │ │ ├── Assets.xcassets/ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ ├── LaunchImage.launchimage/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── LaunchScreen.AspectFill.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ └── LaunchScreen.Center.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── Info.plist │ │ │ ├── LaunchScreen.storyboard │ │ │ └── build.xcconfig │ │ ├── README.md │ │ ├── app-root.xml │ │ ├── app.css │ │ ├── app.ts │ │ ├── bundle-config.ts │ │ ├── main-page.ts │ │ ├── main-page.xml │ │ ├── main-view-model.ts │ │ └── package.json │ ├── package.json │ ├── references.d.ts │ ├── tsconfig.json │ └── tsconfig.tns.json ├── demo-ng/ │ ├── App_Resources/ │ │ ├── Android/ │ │ │ ├── app.gradle │ │ │ └── src/ │ │ │ └── main/ │ │ │ ├── AndroidManifest.xml │ │ │ └── res/ │ │ │ ├── drawable-nodpi/ │ │ │ │ └── splash_screen.xml │ │ │ ├── values/ │ │ │ │ ├── colors.xml │ │ │ │ └── styles.xml │ │ │ └── values-v21/ │ │ │ ├── colors.xml │ │ │ └── styles.xml │ │ └── iOS/ │ │ ├── Assets.xcassets/ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.launchimage/ │ │ │ │ └── Contents.json │ │ │ ├── LaunchScreen.AspectFill.imageset/ │ │ │ │ └── Contents.json │ │ │ └── LaunchScreen.Center.imageset/ │ │ │ └── Contents.json │ │ ├── Info.plist │ │ ├── LaunchScreen.storyboard │ │ └── build.xcconfig │ ├── README.md │ ├── angular.json │ ├── nsconfig.json │ ├── package.json │ ├── references.d.ts │ ├── src/ │ │ ├── app/ │ │ │ ├── app-routing.module.ts │ │ │ ├── app.component.html │ │ │ ├── app.component.ts │ │ │ ├── app.module.ts │ │ │ └── item/ │ │ │ ├── items.component.html │ │ │ └── items.component.ts │ │ ├── app.css │ │ ├── main.ts │ │ └── package.json │ ├── tsconfig.json │ └── tsconfig.tns.json ├── demo-vue/ │ ├── .gitignore │ ├── README.md │ ├── app/ │ │ ├── App_Resources/ │ │ │ ├── Android/ │ │ │ │ ├── app.gradle │ │ │ │ └── src/ │ │ │ │ └── main/ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ └── res/ │ │ │ │ ├── drawable-nodpi/ │ │ │ │ │ └── splash_screen.xml │ │ │ │ ├── values/ │ │ │ │ │ ├── colors.xml │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── styles.xml │ │ │ │ └── values-v21/ │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── iOS/ │ │ │ ├── Assets.xcassets/ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ ├── LaunchImage.launchimage/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── LaunchScreen.AspectFill.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ └── LaunchScreen.Center.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── Info.plist │ │ │ ├── LaunchScreen.storyboard │ │ │ └── build.xcconfig │ │ ├── app.scss │ │ ├── components/ │ │ │ └── App.vue │ │ ├── fonts/ │ │ │ └── .gitkeep │ │ ├── main.js │ │ └── package.json │ └── package.json ├── native-src/ │ ├── android/ │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── README.md │ │ ├── android.iml │ │ ├── app/ │ │ │ ├── .gitignore │ │ │ ├── app.iml │ │ │ ├── build.gradle │ │ │ ├── proguard-rules.pro │ │ │ └── src/ │ │ │ └── main/ │ │ │ ├── AndroidManifest.xml │ │ │ ├── java/ │ │ │ │ └── com/ │ │ │ │ └── telerik/ │ │ │ │ └── localnotifications/ │ │ │ │ ├── Action.java │ │ │ │ ├── ActionGroup.java │ │ │ │ ├── Builder.java │ │ │ │ ├── DownloadFileFromUrl.java │ │ │ │ ├── LifecycleCallbacks.java │ │ │ │ ├── LocalNotificationsPlugin.java │ │ │ │ ├── LocalNotificationsPluginListener.java │ │ │ │ ├── NotificationActionReceiver.java │ │ │ │ ├── NotificationAlarmReceiver.java │ │ │ │ ├── NotificationClearedReceiver.java │ │ │ │ ├── NotificationRestoreReceiver.java │ │ │ │ └── Store.java │ │ │ └── res/ │ │ │ └── values/ │ │ │ └── strings.xml │ │ ├── build.gradle │ │ ├── gradle/ │ │ │ └── wrapper/ │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── gradle.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── locnotplugin.iml │ │ └── settings.gradle │ └── ios/ │ ├── .gitattributes │ ├── .gitignore │ ├── LocalNotificationsPlugin/ │ │ ├── Info.plist │ │ ├── LocalNotificationsPlugin.h │ │ ├── Notification.h │ │ ├── Notification.m │ │ ├── NotificationManager.h │ │ └── NotificationManager.m │ ├── LocalNotificationsPlugin.xcodeproj/ │ │ ├── project.pbxproj │ │ └── project.xcworkspace/ │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata/ │ │ └── PushPlugin.xccheckout │ └── README.md ├── publish/ │ ├── pack.sh │ ├── package.json │ └── publish.sh ├── src/ │ ├── .npmignore │ ├── index.d.ts │ ├── local-notifications-common.ts │ ├── local-notifications.android.ts │ ├── local-notifications.ios.ts │ ├── package.json │ ├── platforms/ │ │ ├── android/ │ │ │ └── app-release.aar │ │ └── ios/ │ │ ├── LocalNotificationsPlugin.framework/ │ │ │ ├── Headers/ │ │ │ │ ├── LocalNotificationsPlugin.h │ │ │ │ ├── Notification.h │ │ │ │ └── NotificationManager.h │ │ │ ├── Info.plist │ │ │ ├── LocalNotificationsPlugin │ │ │ └── Modules/ │ │ │ └── module.modulemap │ │ └── typings/ │ │ └── objc!LocalNotificationsPlugin.d.ts │ ├── references.d.ts │ └── tsconfig.json └── tslint.json