react-native-acoustic-mobile-push-location-beta 3.8.17
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.
- package/README.md +45 -0
- package/android/android-react-native-acoustic-mobile-push-location.iml +254 -0
- package/android/build.gradle +45 -0
- package/android/react-native-acoustic-mobile-push-location.iml +255 -0
- package/android/src/main/AndroidManifest.xml +3 -0
- package/android/src/main/java/co/acoustic/mobile/push/plugin/location/RNAcousticMobilePushBroadcastReceiver.java +107 -0
- package/android/src/main/java/co/acoustic/mobile/push/plugin/location/RNAcousticMobilePushLocationModule.java +105 -0
- package/android/src/main/java/co/acoustic/mobile/push/plugin/location/RNAcousticMobilePushLocationPackage.java +37 -0
- package/android/src/main/res/drawable-hdpi/ic_action_back.png +0 -0
- package/android/src/main/res/drawable-hdpi/ic_action_forward.png +0 -0
- package/android/src/main/res/drawable-mdpi/ic_action_back.png +0 -0
- package/android/src/main/res/drawable-mdpi/ic_action_forward.png +0 -0
- package/android/src/main/res/drawable-xhdpi/ic_action_back.png +0 -0
- package/android/src/main/res/drawable-xhdpi/ic_action_forward.png +0 -0
- package/android/src/main/res/drawable-xxhdpi/ic_action_back.png +0 -0
- package/android/src/main/res/drawable-xxhdpi/ic_action_forward.png +0 -0
- package/android/src/main/res/layout/activity_action_webview.xml +10 -0
- package/android/src/main/res/menu/menu_action_webview.xml +19 -0
- package/android/src/main/res/values/mce-plugin-displayweb-strings.xml +5 -0
- package/ios/RNAcousticMobilePushLocation.h +17 -0
- package/ios/RNAcousticMobilePushLocation.m +111 -0
- package/ios/RNAcousticMobilePushLocation.xcodeproj/project.pbxproj +278 -0
- package/ios/RNAcousticMobilePushLocation.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
- package/ios/RNAcousticMobilePushLocation.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- package/ios/RNAcousticMobilePushLocation.xcodeproj/project.xcworkspace/xcuserdata/buchmanj.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
- package/ios/RNAcousticMobilePushLocation.xcodeproj/xcshareddata/xcschemes/RNAcousticMobilePushLocation.xcscheme +67 -0
- package/ios/RNAcousticMobilePushLocation.xcodeproj/xcuserdata/buchmanj.xcuserdatad/xcschemes/xcschememanagement.plist +32 -0
- package/ios/RNAcousticMobilePushLocation.xcworkspace/contents.xcworkspacedata +9 -0
- package/package.json +39 -0
- package/postinstall.js +258 -0
- package/react-native-acoustic-mobile-push-location.podspec +23 -0
package/README.md
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
# react-native-acoustic-mobile-push-location-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,254 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<module external.linked.project.id=":react-native-acoustic-mobile-push-location" 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-location" />
|
|
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-location/android/src/main/AndroidManifest.xml" />
|
|
21
|
+
<option name="RES_FOLDER_RELATIVE_PATH" value="/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-location/android/src/main/res" />
|
|
22
|
+
<option name="RES_FOLDERS_RELATIVE_PATH" value="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-location/android/src/main/res;file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-location/android/build/generated/res/rs/debug;file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-location/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-location/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-location/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes" />
|
|
31
|
+
<output-test url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-location/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-location/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-location/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-location/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-location/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-location/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-location/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-location/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-location/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-location/android/build/generated/res/resValues/androidTest/debug">
|
|
47
|
+
<sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-location/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-location/android/build/generated/res/resValues/debug">
|
|
50
|
+
<sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-location/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-location/android/build/generated/res/rs/androidTest/debug">
|
|
53
|
+
<sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-location/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-location/android/build/generated/res/rs/debug">
|
|
56
|
+
<sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-location/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-location/android/build/generated/source/apt/androidTest/debug">
|
|
59
|
+
<sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-location/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-location/android/build/generated/source/apt/debug">
|
|
62
|
+
<sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-location/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-location/android/build/generated/source/apt/test/debug">
|
|
65
|
+
<sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-location/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-location/android/build/generated/source/buildConfig/androidTest/debug">
|
|
68
|
+
<sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-location/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-location/android/build/generated/source/buildConfig/debug">
|
|
71
|
+
<sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-location/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-location/android/src/androidTest/aidl">
|
|
74
|
+
<sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-location/android/src/androidTest/aidl" isTestSource="true" />
|
|
75
|
+
</content>
|
|
76
|
+
<content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-location/android/src/androidTest/assets">
|
|
77
|
+
<sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-location/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-location/android/src/androidTest/java">
|
|
80
|
+
<sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-location/android/src/androidTest/java" isTestSource="true" />
|
|
81
|
+
</content>
|
|
82
|
+
<content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-location/android/src/androidTest/res">
|
|
83
|
+
<sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-location/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-location/android/src/androidTest/resources">
|
|
86
|
+
<sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-location/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-location/android/src/androidTest/rs">
|
|
89
|
+
<sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-location/android/src/androidTest/rs" isTestSource="true" />
|
|
90
|
+
</content>
|
|
91
|
+
<content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-location/android/src/androidTest/shaders">
|
|
92
|
+
<sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-location/android/src/androidTest/shaders" isTestSource="true" />
|
|
93
|
+
</content>
|
|
94
|
+
<content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-location/android/src/androidTestDebug/aidl">
|
|
95
|
+
<sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-location/android/src/androidTestDebug/aidl" isTestSource="true" />
|
|
96
|
+
</content>
|
|
97
|
+
<content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-location/android/src/androidTestDebug/assets">
|
|
98
|
+
<sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-location/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-location/android/src/androidTestDebug/java">
|
|
101
|
+
<sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-location/android/src/androidTestDebug/java" isTestSource="true" />
|
|
102
|
+
</content>
|
|
103
|
+
<content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-location/android/src/androidTestDebug/res">
|
|
104
|
+
<sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-location/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-location/android/src/androidTestDebug/resources">
|
|
107
|
+
<sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-location/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-location/android/src/androidTestDebug/rs">
|
|
110
|
+
<sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-location/android/src/androidTestDebug/rs" isTestSource="true" />
|
|
111
|
+
</content>
|
|
112
|
+
<content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-location/android/src/androidTestDebug/shaders">
|
|
113
|
+
<sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-location/android/src/androidTestDebug/shaders" isTestSource="true" />
|
|
114
|
+
</content>
|
|
115
|
+
<content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-location/android/src/debug/aidl">
|
|
116
|
+
<sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-location/android/src/debug/aidl" isTestSource="false" />
|
|
117
|
+
</content>
|
|
118
|
+
<content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-location/android/src/debug/assets">
|
|
119
|
+
<sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-location/android/src/debug/assets" type="java-resource" />
|
|
120
|
+
</content>
|
|
121
|
+
<content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-location/android/src/debug/java">
|
|
122
|
+
<sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-location/android/src/debug/java" isTestSource="false" />
|
|
123
|
+
</content>
|
|
124
|
+
<content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-location/android/src/debug/res">
|
|
125
|
+
<sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-location/android/src/debug/res" type="java-resource" />
|
|
126
|
+
</content>
|
|
127
|
+
<content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-location/android/src/debug/resources">
|
|
128
|
+
<sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-location/android/src/debug/resources" type="java-resource" />
|
|
129
|
+
</content>
|
|
130
|
+
<content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-location/android/src/debug/rs">
|
|
131
|
+
<sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-location/android/src/debug/rs" isTestSource="false" />
|
|
132
|
+
</content>
|
|
133
|
+
<content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-location/android/src/debug/shaders">
|
|
134
|
+
<sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-location/android/src/debug/shaders" isTestSource="false" />
|
|
135
|
+
</content>
|
|
136
|
+
<content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-location/android/src/main/aidl">
|
|
137
|
+
<sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-location/android/src/main/aidl" isTestSource="false" />
|
|
138
|
+
</content>
|
|
139
|
+
<content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-location/android/src/main/assets">
|
|
140
|
+
<sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-location/android/src/main/assets" type="java-resource" />
|
|
141
|
+
</content>
|
|
142
|
+
<content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-location/android/src/main/java">
|
|
143
|
+
<sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-location/android/src/main/java" isTestSource="false" />
|
|
144
|
+
</content>
|
|
145
|
+
<content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-location/android/src/main/res">
|
|
146
|
+
<sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-location/android/src/main/res" type="java-resource" />
|
|
147
|
+
</content>
|
|
148
|
+
<content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-location/android/src/main/resources">
|
|
149
|
+
<sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-location/android/src/main/resources" type="java-resource" />
|
|
150
|
+
</content>
|
|
151
|
+
<content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-location/android/src/main/rs">
|
|
152
|
+
<sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-location/android/src/main/rs" isTestSource="false" />
|
|
153
|
+
</content>
|
|
154
|
+
<content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-location/android/src/main/shaders">
|
|
155
|
+
<sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-location/android/src/main/shaders" isTestSource="false" />
|
|
156
|
+
</content>
|
|
157
|
+
<content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-location/android/src/test/aidl">
|
|
158
|
+
<sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-location/android/src/test/aidl" isTestSource="true" />
|
|
159
|
+
</content>
|
|
160
|
+
<content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-location/android/src/test/assets">
|
|
161
|
+
<sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-location/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-location/android/src/test/java">
|
|
164
|
+
<sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-location/android/src/test/java" isTestSource="true" />
|
|
165
|
+
</content>
|
|
166
|
+
<content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-location/android/src/test/res">
|
|
167
|
+
<sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-location/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-location/android/src/test/resources">
|
|
170
|
+
<sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-location/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-location/android/src/test/rs">
|
|
173
|
+
<sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-location/android/src/test/rs" isTestSource="true" />
|
|
174
|
+
</content>
|
|
175
|
+
<content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-location/android/src/test/shaders">
|
|
176
|
+
<sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-location/android/src/test/shaders" isTestSource="true" />
|
|
177
|
+
</content>
|
|
178
|
+
<content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-location/android/src/testDebug/aidl">
|
|
179
|
+
<sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-location/android/src/testDebug/aidl" isTestSource="true" />
|
|
180
|
+
</content>
|
|
181
|
+
<content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-location/android/src/testDebug/assets">
|
|
182
|
+
<sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-location/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-location/android/src/testDebug/java">
|
|
185
|
+
<sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-location/android/src/testDebug/java" isTestSource="true" />
|
|
186
|
+
</content>
|
|
187
|
+
<content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-location/android/src/testDebug/res">
|
|
188
|
+
<sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-location/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-location/android/src/testDebug/resources">
|
|
191
|
+
<sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-location/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-location/android/src/testDebug/rs">
|
|
194
|
+
<sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-location/android/src/testDebug/rs" isTestSource="true" />
|
|
195
|
+
</content>
|
|
196
|
+
<content url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-location/android/src/testDebug/shaders">
|
|
197
|
+
<sourceFolder url="file://$MODULE_DIR$/../../../../ReactNative2/SampleApp/node_modules/react-native-acoustic-mobile-push-location/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.android.support:collections:28.0.0@jar" level="project" />
|
|
208
|
+
<orderEntry type="library" name="Gradle: android.arch.lifecycle:common:1.1.1@jar" level="project" />
|
|
209
|
+
<orderEntry type="library" name="Gradle: android.arch.core:common:1.1.1@jar" level="project" />
|
|
210
|
+
<orderEntry type="library" name="Gradle: com.android.support:support-annotations:28.0.0@jar" level="project" />
|
|
211
|
+
<orderEntry type="library" name="Gradle: com.parse.bolts:bolts-tasks:1.4.0@jar" level="project" />
|
|
212
|
+
<orderEntry type="library" name="Gradle: com.facebook.react:react-native:0.59.9@aar" level="project" />
|
|
213
|
+
<orderEntry type="library" name="Gradle: com.android.support:appcompat-v7:28.0.0@aar" level="project" />
|
|
214
|
+
<orderEntry type="library" name="Gradle: com.google.android.gms:play-services-location:16.0.0@aar" level="project" />
|
|
215
|
+
<orderEntry type="library" name="Gradle: com.google.android.gms:play-services-base:16.0.1@aar" level="project" />
|
|
216
|
+
<orderEntry type="library" name="Gradle: com.facebook.fresco:fresco:1.10.0@aar" level="project" />
|
|
217
|
+
<orderEntry type="library" name="Gradle: com.facebook.fresco:imagepipeline-okhttp3:1.10.0@aar" level="project" />
|
|
218
|
+
<orderEntry type="library" name="Gradle: com.facebook.fresco:drawee:1.10.0@aar" level="project" />
|
|
219
|
+
<orderEntry type="library" name="Gradle: com.facebook.fresco:imagepipeline:1.10.0@aar" level="project" />
|
|
220
|
+
<orderEntry type="library" name="Gradle: com.facebook.fresco:imagepipeline-base:1.10.0@aar" level="project" />
|
|
221
|
+
<orderEntry type="library" name="Gradle: com.facebook.soloader:soloader:0.6.0@aar" level="project" />
|
|
222
|
+
<orderEntry type="library" name="Gradle: com.google.android.gms:play-services-tasks:16.0.1@aar" level="project" />
|
|
223
|
+
<orderEntry type="library" name="Gradle: com.google.android.gms:play-services-places-placereport:16.0.0@aar" level="project" />
|
|
224
|
+
<orderEntry type="library" name="Gradle: com.google.android.gms:play-services-basement:16.0.1@aar" level="project" />
|
|
225
|
+
<orderEntry type="library" name="Gradle: com.android.support:support-v4:26.1.0@aar" level="project" />
|
|
226
|
+
<orderEntry type="library" name="Gradle: com.android.support:support-fragment:28.0.0@aar" level="project" />
|
|
227
|
+
<orderEntry type="library" name="Gradle: com.android.support:animated-vector-drawable:28.0.0@aar" level="project" />
|
|
228
|
+
<orderEntry type="library" name="Gradle: com.android.support:support-core-ui:28.0.0@aar" level="project" />
|
|
229
|
+
<orderEntry type="library" name="Gradle: com.android.support:support-core-utils:28.0.0@aar" level="project" />
|
|
230
|
+
<orderEntry type="library" name="Gradle: com.android.support:support-vector-drawable:28.0.0@aar" level="project" />
|
|
231
|
+
<orderEntry type="library" name="Gradle: com.android.support:loader:28.0.0@aar" level="project" />
|
|
232
|
+
<orderEntry type="library" name="Gradle: com.android.support:viewpager:28.0.0@aar" level="project" />
|
|
233
|
+
<orderEntry type="library" name="Gradle: com.android.support:coordinatorlayout:28.0.0@aar" level="project" />
|
|
234
|
+
<orderEntry type="library" name="Gradle: com.android.support:drawerlayout:28.0.0@aar" level="project" />
|
|
235
|
+
<orderEntry type="library" name="Gradle: com.android.support:slidingpanelayout:28.0.0@aar" level="project" />
|
|
236
|
+
<orderEntry type="library" name="Gradle: com.android.support:customview:28.0.0@aar" level="project" />
|
|
237
|
+
<orderEntry type="library" name="Gradle: com.android.support:swiperefreshlayout:28.0.0@aar" level="project" />
|
|
238
|
+
<orderEntry type="library" name="Gradle: com.android.support:asynclayoutinflater:28.0.0@aar" level="project" />
|
|
239
|
+
<orderEntry type="library" name="Gradle: com.android.support:support-media-compat:26.1.0@aar" level="project" />
|
|
240
|
+
<orderEntry type="library" name="Gradle: com.android.support:support-compat:28.0.0@aar" level="project" />
|
|
241
|
+
<orderEntry type="library" name="Gradle: com.android.support:versionedparcelable:28.0.0@aar" level="project" />
|
|
242
|
+
<orderEntry type="library" name="Gradle: com.android.support:cursoradapter:28.0.0@aar" level="project" />
|
|
243
|
+
<orderEntry type="library" name="Gradle: android.arch.lifecycle:runtime:1.1.1@aar" level="project" />
|
|
244
|
+
<orderEntry type="library" name="Gradle: com.android.support:documentfile:28.0.0@aar" level="project" />
|
|
245
|
+
<orderEntry type="library" name="Gradle: com.android.support:localbroadcastmanager:28.0.0@aar" level="project" />
|
|
246
|
+
<orderEntry type="library" name="Gradle: com.android.support:print:28.0.0@aar" level="project" />
|
|
247
|
+
<orderEntry type="library" name="Gradle: android.arch.lifecycle:viewmodel:1.1.1@aar" level="project" />
|
|
248
|
+
<orderEntry type="library" name="Gradle: android.arch.lifecycle:livedata:1.1.1@aar" level="project" />
|
|
249
|
+
<orderEntry type="library" name="Gradle: android.arch.lifecycle:livedata-core:1.1.1@aar" level="project" />
|
|
250
|
+
<orderEntry type="library" name="Gradle: android.arch.core:runtime:1.1.1@aar" level="project" />
|
|
251
|
+
<orderEntry type="library" name="Gradle: com.android.support:interpolator:28.0.0@aar" level="project" />
|
|
252
|
+
<orderEntry type="library" name="Gradle: com.facebook.fresco:fbcore:1.10.0@aar" level="project" />
|
|
253
|
+
</component>
|
|
254
|
+
</module>
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
|
|
2
|
+
buildscript {
|
|
3
|
+
repositories {
|
|
4
|
+
jcenter()
|
|
5
|
+
google()
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
dependencies {
|
|
9
|
+
classpath 'com.android.tools.build:gradle:1.3.1'
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
apply plugin: 'com.android.library'
|
|
14
|
+
|
|
15
|
+
android {
|
|
16
|
+
compileSdkVersion 28
|
|
17
|
+
|
|
18
|
+
defaultConfig {
|
|
19
|
+
minSdkVersion 16
|
|
20
|
+
targetSdkVersion 26
|
|
21
|
+
versionCode 1
|
|
22
|
+
versionName "1.0"
|
|
23
|
+
}
|
|
24
|
+
lintOptions {
|
|
25
|
+
abortOnError false
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
repositories {
|
|
30
|
+
mavenCentral()
|
|
31
|
+
google()
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
dependencies {
|
|
35
|
+
compileOnly('com.facebook.react:react-native:+') {
|
|
36
|
+
exclude group: 'com.android.support'
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
implementation "androidx.core:core:1.8.0"
|
|
40
|
+
implementation 'androidx.appcompat:appcompat:1.0.2'
|
|
41
|
+
implementation 'com.google.android.gms:play-services-base:16.0.1'
|
|
42
|
+
implementation 'com.google.android.gms:play-services-location:16.0.0'
|
|
43
|
+
compileOnly fileTree(dir: '../../react-native-acoustic-mobile-push/android/libs', include: ['*.aar'])
|
|
44
|
+
}
|
|
45
|
+
|