react-native-acoustic-mobile-push-inbox-beta 3.8.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (39) hide show
  1. package/README.md +45 -0
  2. package/android/android-react-native-acoustic-mobile-push-inbox.iml +217 -0
  3. package/android/build.gradle +41 -0
  4. package/android/react-native-acoustic-mobile-push-inbox.iml +218 -0
  5. package/android/src/main/AndroidManifest.xml +3 -0
  6. package/android/src/main/java/co/acoustic/mobile/push/plugin/inbox/RNAcousticMobilePushBroadcastReceiver.java +114 -0
  7. package/android/src/main/java/co/acoustic/mobile/push/plugin/inbox/RNAcousticMobilePushInboxModule.java +630 -0
  8. package/android/src/main/java/co/acoustic/mobile/push/plugin/inbox/RNAcousticMobilePushInboxPackage.java +37 -0
  9. package/android/src/main/res/drawable-hdpi/ic_action_back.png +0 -0
  10. package/android/src/main/res/drawable-hdpi/ic_action_forward.png +0 -0
  11. package/android/src/main/res/drawable-mdpi/ic_action_back.png +0 -0
  12. package/android/src/main/res/drawable-mdpi/ic_action_forward.png +0 -0
  13. package/android/src/main/res/drawable-xhdpi/ic_action_back.png +0 -0
  14. package/android/src/main/res/drawable-xhdpi/ic_action_forward.png +0 -0
  15. package/android/src/main/res/drawable-xxhdpi/ic_action_back.png +0 -0
  16. package/android/src/main/res/drawable-xxhdpi/ic_action_forward.png +0 -0
  17. package/android/src/main/res/layout/activity_action_webview.xml +10 -0
  18. package/android/src/main/res/menu/menu_action_webview.xml +19 -0
  19. package/android/src/main/res/values/mce-plugin-displayweb-strings.xml +5 -0
  20. package/ios/RNAcousticMobilePushInbox.h +22 -0
  21. package/ios/RNAcousticMobilePushInbox.m +288 -0
  22. package/ios/RNAcousticMobilePushInbox.xcodeproj/project.pbxproj +278 -0
  23. package/ios/RNAcousticMobilePushInbox.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
  24. package/ios/RNAcousticMobilePushInbox.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
  25. package/ios/RNAcousticMobilePushInbox.xcodeproj/project.xcworkspace/xcuserdata/buchmanj.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
  26. package/ios/RNAcousticMobilePushInbox.xcodeproj/xcshareddata/xcschemes/RNAcousticMobilePushInbox.xcscheme +67 -0
  27. package/ios/RNAcousticMobilePushInbox.xcodeproj/xcuserdata/buchmanj.xcuserdatad/xcschemes/xcschememanagement.plist +32 -0
  28. package/ios/RNAcousticMobilePushInbox.xcworkspace/contents.xcworkspacedata +9 -0
  29. package/javascript/default-inbox-template.js +67 -0
  30. package/javascript/full-width-image.js +62 -0
  31. package/javascript/full-width-video.js +66 -0
  32. package/javascript/inbox-action.js +68 -0
  33. package/javascript/inbox-list-item.js +26 -0
  34. package/javascript/inbox-message-view.js +27 -0
  35. package/javascript/inbox-template-registry.js +57 -0
  36. package/javascript/post-inbox-template.js +84 -0
  37. package/package.json +39 -0
  38. package/postinstall.js +103 -0
  39. package/react-native-acoustic-mobile-push-inbox.podspec +23 -0
package/README.md ADDED
@@ -0,0 +1,45 @@
1
+ # react-native-acoustic-mobile-push-inbox-beta
2
+ ### Plugins
3
+ Contains Android/iOS native SDKs + the wrapper code to create plugins for React Native
4
+
5
+ ----
6
+
7
+ [Overview](https://developer.goacoustic.com/acoustic-campaign/docs/add-the-react-native-plug-in-to-your-app#overview)
8
+ ---
9
+
10
+ # SampleApp
11
+ Contains iOS / Android native applications that build the shared react views [`/screens`] & the sdk plugin(s)
12
+
13
+ ## Build
14
+ - Please see React Native's Guide(s) on how to setup your environment: https://reactnative.dev/docs/environment-setup
15
+ - Once your environment is setup install the packages - including sdk plugins:
16
+ * `cd SampleApp`
17
+ * `yarn install`
18
+
19
+ ### Run Android
20
+ * `brew install android-platform-tools`
21
+ * `npx react-native run-android`
22
+
23
+ ### Run iOS
24
+ * `cd ios`
25
+ * `pod install`
26
+ * open `.xcworkspace` file in xcode
27
+ * build to device or simulator
28
+
29
+ ### Testing the Sample app
30
+ Tests are stored in the `SampleApp/e2e` directory. All test files of the form `*.spec.js` will be automatically picked up and run by the CI pipeline.
31
+
32
+ To run tests, first build the app using the desired configuration using `detox -c [config name] build`, then run the tests using `detox -c [config name] run`.
33
+
34
+ Available configurations are:
35
+ * ios-15
36
+ * ios-14
37
+ * ios-13
38
+ * android-31
39
+ * android-30
40
+ * android-29
41
+ * android-28
42
+ * android-27
43
+ * android-25
44
+
45
+ Test results will be placed in `SampleApp/test-results.xml`.
@@ -0,0 +1,217 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <module external.linked.project.id=":react-native-acoustic-mobile-push-inbox" external.linked.project.path="$MODULE_DIR$" external.root.project.path="$MODULE_DIR$/../../../../ReactNative2/SampleApp/android" external.system.id="GRADLE" type="JAVA_MODULE" version="4">
3
+ <component name="FacetManager">
4
+ <facet type="android-gradle" name="Android-Gradle">
5
+ <configuration>
6
+ <option name="GRADLE_PROJECT_PATH" value=":react-native-acoustic-mobile-push-inbox" />
7
+ <option name="LAST_SUCCESSFUL_SYNC_AGP_VERSION" value="3.3.1" />
8
+ <option name="LAST_KNOWN_AGP_VERSION" value="3.3.1" />
9
+ </configuration>
10
+ </facet>
11
+ <facet type="android" name="Android">
12
+ <configuration>
13
+ <option name="SELECTED_BUILD_VARIANT" value="debug" />
14
+ <option name="ASSEMBLE_TASK_NAME" value="assembleDebug" />
15
+ <option name="COMPILE_JAVA_TASK_NAME" value="compileDebugSources" />
16
+ <afterSyncTasks>
17
+ <task>generateDebugSources</task>
18
+ </afterSyncTasks>
19
+ <option name="ALLOW_USER_CONFIGURATION" value="false" />
20
+ <option name="MANIFEST_FILE_RELATIVE_PATH" value="/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/main/AndroidManifest.xml" />
21
+ <option name="RES_FOLDER_RELATIVE_PATH" value="/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/main/res" />
22
+ <option name="RES_FOLDERS_RELATIVE_PATH" value="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/main/res;file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/build/generated/res/rs/debug;file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/build/generated/res/resValues/debug" />
23
+ <option name="TEST_RES_FOLDERS_RELATIVE_PATH" value="" />
24
+ <option name="ASSETS_FOLDER_RELATIVE_PATH" value="/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/main/assets" />
25
+ <option name="PROJECT_TYPE" value="1" />
26
+ </configuration>
27
+ </facet>
28
+ </component>
29
+ <component name="NewModuleRootManager" LANGUAGE_LEVEL="JDK_1_7">
30
+ <output url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes" />
31
+ <output-test url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/build/intermediates/javac/debugUnitTest/compileDebugUnitTestJavaWithJavac/classes" />
32
+ <exclude-output />
33
+ <content url="file://$MODULE_DIR$" />
34
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/build/generated/aidl_source_output_dir/debug/compileDebugAidl/out">
35
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/build/generated/aidl_source_output_dir/debug/compileDebugAidl/out" isTestSource="false" generated="true" />
36
+ </content>
37
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/build/generated/aidl_source_output_dir/debugAndroidTest/compileDebugAndroidTestAidl/out">
38
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/build/generated/aidl_source_output_dir/debugAndroidTest/compileDebugAndroidTestAidl/out" isTestSource="true" generated="true" />
39
+ </content>
40
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/build/generated/renderscript_source_output_dir/debug/compileDebugRenderscript/out">
41
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/build/generated/renderscript_source_output_dir/debug/compileDebugRenderscript/out" isTestSource="false" generated="true" />
42
+ </content>
43
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/build/generated/renderscript_source_output_dir/debugAndroidTest/compileDebugAndroidTestRenderscript/out">
44
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/build/generated/renderscript_source_output_dir/debugAndroidTest/compileDebugAndroidTestRenderscript/out" isTestSource="true" generated="true" />
45
+ </content>
46
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/build/generated/res/resValues/androidTest/debug">
47
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/build/generated/res/resValues/androidTest/debug" type="java-test-resource" generated="true" />
48
+ </content>
49
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/build/generated/res/resValues/debug">
50
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/build/generated/res/resValues/debug" type="java-resource" generated="true" />
51
+ </content>
52
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/build/generated/res/rs/androidTest/debug">
53
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/build/generated/res/rs/androidTest/debug" type="java-test-resource" generated="true" />
54
+ </content>
55
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/build/generated/res/rs/debug">
56
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/build/generated/res/rs/debug" type="java-resource" generated="true" />
57
+ </content>
58
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/build/generated/source/apt/androidTest/debug">
59
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/build/generated/source/apt/androidTest/debug" isTestSource="true" generated="true" />
60
+ </content>
61
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/build/generated/source/apt/debug">
62
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/build/generated/source/apt/debug" isTestSource="false" generated="true" />
63
+ </content>
64
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/build/generated/source/apt/test/debug">
65
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/build/generated/source/apt/test/debug" isTestSource="true" generated="true" />
66
+ </content>
67
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/build/generated/source/buildConfig/androidTest/debug">
68
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/build/generated/source/buildConfig/androidTest/debug" isTestSource="true" generated="true" />
69
+ </content>
70
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/build/generated/source/buildConfig/debug">
71
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/build/generated/source/buildConfig/debug" isTestSource="false" generated="true" />
72
+ </content>
73
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/androidTest/aidl">
74
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/androidTest/aidl" isTestSource="true" />
75
+ </content>
76
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/androidTest/assets">
77
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/androidTest/assets" type="java-test-resource" />
78
+ </content>
79
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/androidTest/java">
80
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/androidTest/java" isTestSource="true" />
81
+ </content>
82
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/androidTest/res">
83
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/androidTest/res" type="java-test-resource" />
84
+ </content>
85
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/androidTest/resources">
86
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/androidTest/resources" type="java-test-resource" />
87
+ </content>
88
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/androidTest/rs">
89
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/androidTest/rs" isTestSource="true" />
90
+ </content>
91
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/androidTest/shaders">
92
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/androidTest/shaders" isTestSource="true" />
93
+ </content>
94
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/androidTestDebug/aidl">
95
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/androidTestDebug/aidl" isTestSource="true" />
96
+ </content>
97
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/androidTestDebug/assets">
98
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/androidTestDebug/assets" type="java-test-resource" />
99
+ </content>
100
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/androidTestDebug/java">
101
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/androidTestDebug/java" isTestSource="true" />
102
+ </content>
103
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/androidTestDebug/res">
104
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/androidTestDebug/res" type="java-test-resource" />
105
+ </content>
106
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/androidTestDebug/resources">
107
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/androidTestDebug/resources" type="java-test-resource" />
108
+ </content>
109
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/androidTestDebug/rs">
110
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/androidTestDebug/rs" isTestSource="true" />
111
+ </content>
112
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/androidTestDebug/shaders">
113
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/androidTestDebug/shaders" isTestSource="true" />
114
+ </content>
115
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/debug/aidl">
116
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/debug/aidl" isTestSource="false" />
117
+ </content>
118
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/debug/assets">
119
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/debug/assets" type="java-resource" />
120
+ </content>
121
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/debug/java">
122
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/debug/java" isTestSource="false" />
123
+ </content>
124
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/debug/res">
125
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/debug/res" type="java-resource" />
126
+ </content>
127
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/debug/resources">
128
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/debug/resources" type="java-resource" />
129
+ </content>
130
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/debug/rs">
131
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/debug/rs" isTestSource="false" />
132
+ </content>
133
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/debug/shaders">
134
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/debug/shaders" isTestSource="false" />
135
+ </content>
136
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/main/aidl">
137
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/main/aidl" isTestSource="false" />
138
+ </content>
139
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/main/assets">
140
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/main/assets" type="java-resource" />
141
+ </content>
142
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/main/java">
143
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/main/java" isTestSource="false" />
144
+ </content>
145
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/main/res">
146
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/main/res" type="java-resource" />
147
+ </content>
148
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/main/resources">
149
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/main/resources" type="java-resource" />
150
+ </content>
151
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/main/rs">
152
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/main/rs" isTestSource="false" />
153
+ </content>
154
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/main/shaders">
155
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/main/shaders" isTestSource="false" />
156
+ </content>
157
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/test/aidl">
158
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/test/aidl" isTestSource="true" />
159
+ </content>
160
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/test/assets">
161
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/test/assets" type="java-test-resource" />
162
+ </content>
163
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/test/java">
164
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/test/java" isTestSource="true" />
165
+ </content>
166
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/test/res">
167
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/test/res" type="java-test-resource" />
168
+ </content>
169
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/test/resources">
170
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/test/resources" type="java-test-resource" />
171
+ </content>
172
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/test/rs">
173
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/test/rs" isTestSource="true" />
174
+ </content>
175
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/test/shaders">
176
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/test/shaders" isTestSource="true" />
177
+ </content>
178
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/testDebug/aidl">
179
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/testDebug/aidl" isTestSource="true" />
180
+ </content>
181
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/testDebug/assets">
182
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/testDebug/assets" type="java-test-resource" />
183
+ </content>
184
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/testDebug/java">
185
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/testDebug/java" isTestSource="true" />
186
+ </content>
187
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/testDebug/res">
188
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/testDebug/res" type="java-test-resource" />
189
+ </content>
190
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/testDebug/resources">
191
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/testDebug/resources" type="java-test-resource" />
192
+ </content>
193
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/testDebug/rs">
194
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/testDebug/rs" isTestSource="true" />
195
+ </content>
196
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/testDebug/shaders">
197
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/testDebug/shaders" isTestSource="true" />
198
+ </content>
199
+ <orderEntry type="jdk" jdkName="Android API 26 Platform" jdkType="Android SDK" />
200
+ <orderEntry type="sourceFolder" forTests="false" />
201
+ <orderEntry type="library" name="Gradle: com.facebook.infer.annotation:infer-annotation:0.11.2@jar" level="project" />
202
+ <orderEntry type="library" name="Gradle: javax.inject:javax.inject:1@jar" level="project" />
203
+ <orderEntry type="library" name="Gradle: com.google.code.findbugs:jsr305:3.0.2@jar" level="project" />
204
+ <orderEntry type="library" name="Gradle: com.squareup.okhttp3:okhttp-urlconnection:3.12.1@jar" level="project" />
205
+ <orderEntry type="library" name="Gradle: com.squareup.okhttp3:okhttp:3.12.1@jar" level="project" />
206
+ <orderEntry type="library" name="Gradle: com.squareup.okio:okio:1.15.0@jar" level="project" />
207
+ <orderEntry type="library" name="Gradle: com.parse.bolts:bolts-tasks:1.4.0@jar" level="project" />
208
+ <orderEntry type="library" name="Gradle: com.facebook.react:react-native:0.59.9@aar" level="project" />
209
+ <orderEntry type="library" name="Gradle: com.facebook.fresco:fresco:1.10.0@aar" level="project" />
210
+ <orderEntry type="library" name="Gradle: com.facebook.fresco:imagepipeline-okhttp3:1.10.0@aar" level="project" />
211
+ <orderEntry type="library" name="Gradle: com.facebook.fresco:drawee:1.10.0@aar" level="project" />
212
+ <orderEntry type="library" name="Gradle: com.facebook.fresco:imagepipeline:1.10.0@aar" level="project" />
213
+ <orderEntry type="library" name="Gradle: com.facebook.fresco:imagepipeline-base:1.10.0@aar" level="project" />
214
+ <orderEntry type="library" name="Gradle: com.facebook.soloader:soloader:0.6.0@aar" level="project" />
215
+ <orderEntry type="library" name="Gradle: com.facebook.fresco:fbcore:1.10.0@aar" level="project" />
216
+ </component>
217
+ </module>
@@ -0,0 +1,41 @@
1
+
2
+ buildscript {
3
+ repositories {
4
+ jcenter()
5
+ }
6
+
7
+ dependencies {
8
+ classpath 'com.android.tools.build:gradle:1.3.1'
9
+ }
10
+ }
11
+
12
+ apply plugin: 'com.android.library'
13
+
14
+ android {
15
+ compileSdkVersion 28
16
+
17
+ defaultConfig {
18
+ minSdkVersion 16
19
+ targetSdkVersion 26
20
+ versionCode 1
21
+ versionName "1.0"
22
+ }
23
+ lintOptions {
24
+ abortOnError false
25
+ }
26
+ }
27
+
28
+ repositories {
29
+ mavenCentral()
30
+ }
31
+
32
+ dependencies {
33
+ compileOnly('com.facebook.react:react-native:+') {
34
+ exclude group: 'com.android.support'
35
+ }
36
+
37
+ implementation "androidx.core:core:1.8.0"
38
+ implementation 'androidx.appcompat:appcompat:1.0.2'
39
+ compileOnly fileTree(dir: '../../react-native-acoustic-mobile-push/android/libs', include: ['*.aar'])
40
+ }
41
+
@@ -0,0 +1,218 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <module external.linked.project.id=":react-native-acoustic-mobile-push-inbox" external.linked.project.path="$MODULE_DIR$" external.root.project.path="$MODULE_DIR$/../../../../ReactNative2/SampleApp/android" external.system.id="GRADLE" type="JAVA_MODULE" version="4">
3
+ <component name="FacetManager">
4
+ <facet type="android-gradle" name="Android-Gradle">
5
+ <configuration>
6
+ <option name="GRADLE_PROJECT_PATH" value=":react-native-acoustic-mobile-push-inbox" />
7
+ <option name="LAST_SUCCESSFUL_SYNC_AGP_VERSION" value="3.3.1" />
8
+ <option name="LAST_KNOWN_AGP_VERSION" value="3.3.1" />
9
+ </configuration>
10
+ </facet>
11
+ <facet type="android" name="Android">
12
+ <configuration>
13
+ <option name="SELECTED_BUILD_VARIANT" value="debug" />
14
+ <option name="ASSEMBLE_TASK_NAME" value="assembleDebug" />
15
+ <option name="COMPILE_JAVA_TASK_NAME" value="compileDebugSources" />
16
+ <afterSyncTasks>
17
+ <task>generateDebugSources</task>
18
+ </afterSyncTasks>
19
+ <option name="ALLOW_USER_CONFIGURATION" value="false" />
20
+ <option name="MANIFEST_FILE_RELATIVE_PATH" value="/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/main/AndroidManifest.xml" />
21
+ <option name="RES_FOLDER_RELATIVE_PATH" value="/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/main/res" />
22
+ <option name="RES_FOLDERS_RELATIVE_PATH" value="" />
23
+ <option name="TEST_RES_FOLDERS_RELATIVE_PATH" value="" />
24
+ <option name="ASSETS_FOLDER_RELATIVE_PATH" value="/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/main/assets" />
25
+ <option name="PROJECT_TYPE" value="1" />
26
+ </configuration>
27
+ </facet>
28
+ </component>
29
+ <component name="NewModuleRootManager" LANGUAGE_LEVEL="JDK_1_7">
30
+ <output url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes" />
31
+ <output-test url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/build/intermediates/javac/debugUnitTest/compileDebugUnitTestJavaWithJavac/classes" />
32
+ <exclude-output />
33
+ <content url="file://$MODULE_DIR$" />
34
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/build/generated/aidl_source_output_dir/debug/compileDebugAidl/out">
35
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/build/generated/aidl_source_output_dir/debug/compileDebugAidl/out" isTestSource="false" generated="true" />
36
+ </content>
37
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/build/generated/aidl_source_output_dir/debugAndroidTest/compileDebugAndroidTestAidl/out">
38
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/build/generated/aidl_source_output_dir/debugAndroidTest/compileDebugAndroidTestAidl/out" isTestSource="true" generated="true" />
39
+ </content>
40
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/build/generated/renderscript_source_output_dir/debug/compileDebugRenderscript/out">
41
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/build/generated/renderscript_source_output_dir/debug/compileDebugRenderscript/out" isTestSource="false" generated="true" />
42
+ </content>
43
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/build/generated/renderscript_source_output_dir/debugAndroidTest/compileDebugAndroidTestRenderscript/out">
44
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/build/generated/renderscript_source_output_dir/debugAndroidTest/compileDebugAndroidTestRenderscript/out" isTestSource="true" generated="true" />
45
+ </content>
46
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/build/generated/res/resValues/androidTest/debug">
47
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/build/generated/res/resValues/androidTest/debug" type="java-test-resource" generated="true" />
48
+ </content>
49
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/build/generated/res/resValues/debug">
50
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/build/generated/res/resValues/debug" type="java-resource" generated="true" />
51
+ </content>
52
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/build/generated/res/rs/androidTest/debug">
53
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/build/generated/res/rs/androidTest/debug" type="java-test-resource" generated="true" />
54
+ </content>
55
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/build/generated/res/rs/debug">
56
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/build/generated/res/rs/debug" type="java-resource" generated="true" />
57
+ </content>
58
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/build/generated/source/apt/androidTest/debug">
59
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/build/generated/source/apt/androidTest/debug" isTestSource="true" generated="true" />
60
+ </content>
61
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/build/generated/source/apt/debug">
62
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/build/generated/source/apt/debug" isTestSource="false" generated="true" />
63
+ </content>
64
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/build/generated/source/apt/test/debug">
65
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/build/generated/source/apt/test/debug" isTestSource="true" generated="true" />
66
+ </content>
67
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/build/generated/source/buildConfig/androidTest/debug">
68
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/build/generated/source/buildConfig/androidTest/debug" isTestSource="true" generated="true" />
69
+ </content>
70
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/build/generated/source/buildConfig/debug">
71
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/build/generated/source/buildConfig/debug" isTestSource="false" generated="true" />
72
+ </content>
73
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/androidTest/aidl">
74
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/androidTest/aidl" isTestSource="true" />
75
+ </content>
76
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/androidTest/assets">
77
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/androidTest/assets" type="java-test-resource" />
78
+ </content>
79
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/androidTest/java">
80
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/androidTest/java" isTestSource="true" />
81
+ </content>
82
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/androidTest/res">
83
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/androidTest/res" type="java-test-resource" />
84
+ </content>
85
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/androidTest/resources">
86
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/androidTest/resources" type="java-test-resource" />
87
+ </content>
88
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/androidTest/rs">
89
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/androidTest/rs" isTestSource="true" />
90
+ </content>
91
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/androidTest/shaders">
92
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/androidTest/shaders" isTestSource="true" />
93
+ </content>
94
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/androidTestDebug/aidl">
95
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/androidTestDebug/aidl" isTestSource="true" />
96
+ </content>
97
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/androidTestDebug/assets">
98
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/androidTestDebug/assets" type="java-test-resource" />
99
+ </content>
100
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/androidTestDebug/java">
101
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/androidTestDebug/java" isTestSource="true" />
102
+ </content>
103
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/androidTestDebug/res">
104
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/androidTestDebug/res" type="java-test-resource" />
105
+ </content>
106
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/androidTestDebug/resources">
107
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/androidTestDebug/resources" type="java-test-resource" />
108
+ </content>
109
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/androidTestDebug/rs">
110
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/androidTestDebug/rs" isTestSource="true" />
111
+ </content>
112
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/androidTestDebug/shaders">
113
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/androidTestDebug/shaders" isTestSource="true" />
114
+ </content>
115
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/debug/aidl">
116
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/debug/aidl" isTestSource="false" />
117
+ </content>
118
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/debug/assets">
119
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/debug/assets" type="java-resource" />
120
+ </content>
121
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/debug/java">
122
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/debug/java" isTestSource="false" />
123
+ </content>
124
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/debug/res">
125
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/debug/res" type="java-resource" />
126
+ </content>
127
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/debug/resources">
128
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/debug/resources" type="java-resource" />
129
+ </content>
130
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/debug/rs">
131
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/debug/rs" isTestSource="false" />
132
+ </content>
133
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/debug/shaders">
134
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/debug/shaders" isTestSource="false" />
135
+ </content>
136
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/main/aidl">
137
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/main/aidl" isTestSource="false" />
138
+ </content>
139
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/main/assets">
140
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/main/assets" type="java-resource" />
141
+ </content>
142
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/main/java">
143
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/main/java" isTestSource="false" />
144
+ </content>
145
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/main/res">
146
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/main/res" type="java-resource" />
147
+ </content>
148
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/main/resources">
149
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/main/resources" type="java-resource" />
150
+ </content>
151
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/main/rs">
152
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/main/rs" isTestSource="false" />
153
+ </content>
154
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/main/shaders">
155
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/main/shaders" isTestSource="false" />
156
+ </content>
157
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/test/aidl">
158
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/test/aidl" isTestSource="true" />
159
+ </content>
160
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/test/assets">
161
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/test/assets" type="java-test-resource" />
162
+ </content>
163
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/test/java">
164
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/test/java" isTestSource="true" />
165
+ </content>
166
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/test/res">
167
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/test/res" type="java-test-resource" />
168
+ </content>
169
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/test/resources">
170
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/test/resources" type="java-test-resource" />
171
+ </content>
172
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/test/rs">
173
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/test/rs" isTestSource="true" />
174
+ </content>
175
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/test/shaders">
176
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/test/shaders" isTestSource="true" />
177
+ </content>
178
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/testDebug/aidl">
179
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/testDebug/aidl" isTestSource="true" />
180
+ </content>
181
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/testDebug/assets">
182
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/testDebug/assets" type="java-test-resource" />
183
+ </content>
184
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/testDebug/java">
185
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/testDebug/java" isTestSource="true" />
186
+ </content>
187
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/testDebug/res">
188
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/testDebug/res" type="java-test-resource" />
189
+ </content>
190
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/testDebug/resources">
191
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/testDebug/resources" type="java-test-resource" />
192
+ </content>
193
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/testDebug/rs">
194
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/testDebug/rs" isTestSource="true" />
195
+ </content>
196
+ <content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/testDebug/shaders">
197
+ <sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-inbox/android/src/testDebug/shaders" isTestSource="true" />
198
+ </content>
199
+ <orderEntry type="jdk" jdkName="Android API 26 Platform" jdkType="Android SDK" />
200
+ <orderEntry type="sourceFolder" forTests="false" />
201
+ <orderEntry type="library" name="Gradle: __local_aars__:/Users/buchmanj/Projects/Development/ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push/android/libs/support-acoustic-mobile-push-android-sdk-3.8.0.jar:unspecified@jar" level="project" />
202
+ <orderEntry type="library" name="Gradle: com.facebook.infer.annotation:infer-annotation:0.11.2@jar" level="project" />
203
+ <orderEntry type="library" name="Gradle: javax.inject:javax.inject:1@jar" level="project" />
204
+ <orderEntry type="library" name="Gradle: com.google.code.findbugs:jsr305:3.0.2@jar" level="project" />
205
+ <orderEntry type="library" name="Gradle: com.squareup.okhttp3:okhttp-urlconnection:3.12.1@jar" level="project" />
206
+ <orderEntry type="library" name="Gradle: com.squareup.okhttp3:okhttp:3.12.1@jar" level="project" />
207
+ <orderEntry type="library" name="Gradle: com.squareup.okio:okio:1.15.0@jar" level="project" />
208
+ <orderEntry type="library" name="Gradle: com.parse.bolts:bolts-tasks:1.4.0@jar" level="project" />
209
+ <orderEntry type="library" name="Gradle: com.facebook.react:react-native:0.59.9@aar" level="project" />
210
+ <orderEntry type="library" name="Gradle: com.facebook.fresco:fresco:1.10.0@aar" level="project" />
211
+ <orderEntry type="library" name="Gradle: com.facebook.fresco:imagepipeline-okhttp3:1.10.0@aar" level="project" />
212
+ <orderEntry type="library" name="Gradle: com.facebook.fresco:drawee:1.10.0@aar" level="project" />
213
+ <orderEntry type="library" name="Gradle: com.facebook.fresco:imagepipeline:1.10.0@aar" level="project" />
214
+ <orderEntry type="library" name="Gradle: com.facebook.fresco:imagepipeline-base:1.10.0@aar" level="project" />
215
+ <orderEntry type="library" name="Gradle: com.facebook.soloader:soloader:0.6.0@aar" level="project" />
216
+ <orderEntry type="library" name="Gradle: com.facebook.fresco:fbcore:1.10.0@aar" level="project" />
217
+ </component>
218
+ </module>
@@ -0,0 +1,3 @@
1
+ <manifest xmlns:android="http://schemas.android.com/apk/res/android"
2
+ package="co.acoustic.mobile.push.plugin.inbox">
3
+ </manifest>