reactnative-plugin-appice 1.7.28 → 1.7.29

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 (101) hide show
  1. package/README.md +37 -37
  2. package/android/README.md +14 -14
  3. package/android/build.gradle +138 -158
  4. package/android/gitignore +47 -47
  5. package/android/gradle/wrapper/gradle-wrapper.properties +5 -5
  6. package/android/gradlew +234 -234
  7. package/android/local.properties +8 -8
  8. package/android/src/main/AndroidManifest.xml +120 -164
  9. package/android/src/main/java/com/{reactlibrary → appice/react}/AppICEUtils.java +274 -274
  10. package/android/src/main/java/com/{reactlibrary → appice/react}/AppIceReactPluginModule.java +778 -778
  11. package/android/src/main/java/com/{reactlibrary → appice/react}/AppIceReactPluginPackage.java +28 -28
  12. package/android/src/main/java/com/{reactlibrary → appice/react}/CampaignCampsReceiver.java +56 -56
  13. package/android/src/main/java/com/{reactlibrary → appice/react}/EnumConstants.java +282 -282
  14. package/android/src/main/java/com/{reactlibrary → appice/react}/NotificationEventService.java +59 -59
  15. package/android/src/main/java/com/{reactlibrary → appice/react}/StringConstants.java +24 -24
  16. package/campaign.js +25 -25
  17. package/example/App.js +332 -332
  18. package/example/Gemfile +6 -6
  19. package/example/PageA.tsx +15 -15
  20. package/example/__tests__/App-test.js +14 -14
  21. package/example/ancilliary.js +486 -486
  22. package/example/android/app/_BUCK +55 -55
  23. package/example/android/app/build.gradle +320 -320
  24. package/example/android/app/build_defs.bzl +19 -19
  25. package/example/android/app/proguard-rules.pro +10 -10
  26. package/example/android/app/src/debug/AndroidManifest.xml +13 -13
  27. package/example/android/app/src/debug/java/com/example/ReactNativeFlipper.java +73 -73
  28. package/example/android/app/src/main/AndroidManifest.xml +72 -72
  29. package/example/android/app/src/main/java/com/example/MainActivity.java +48 -48
  30. package/example/android/app/src/main/java/com/example/MainApplication.java +91 -91
  31. package/example/android/app/src/main/java/com/example/newarchitecture/MainApplicationReactNativeHost.java +116 -116
  32. package/example/android/app/src/main/java/com/example/newarchitecture/components/MainComponentsRegistry.java +36 -36
  33. package/example/android/app/src/main/java/com/example/newarchitecture/modules/MainApplicationTurboModuleManagerDelegate.java +48 -48
  34. package/example/android/app/src/main/jni/Android.mk +48 -48
  35. package/example/android/app/src/main/jni/MainApplicationModuleProvider.cpp +24 -24
  36. package/example/android/app/src/main/jni/MainApplicationModuleProvider.h +16 -16
  37. package/example/android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.cpp +45 -45
  38. package/example/android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.h +38 -38
  39. package/example/android/app/src/main/jni/MainComponentsRegistry.cpp +61 -61
  40. package/example/android/app/src/main/jni/MainComponentsRegistry.h +32 -32
  41. package/example/android/app/src/main/jni/OnLoad.cpp +11 -11
  42. package/example/android/app/src/main/res/drawable/rn_edit_text_material.xml +36 -36
  43. package/example/android/app/src/main/res/values/strings.xml +3 -3
  44. package/example/android/app/src/main/res/values/styles.xml +9 -9
  45. package/example/android/build.gradle +73 -73
  46. package/example/android/gradle/wrapper/gradle-wrapper.properties +5 -5
  47. package/example/android/gradle.properties +40 -40
  48. package/example/android/gradlew +234 -234
  49. package/example/android/settings.gradle +11 -11
  50. package/example/app.json +3 -3
  51. package/example/babel.config.js +3 -3
  52. package/example/index.js +9 -9
  53. package/example/ios/Podfile +44 -44
  54. package/example/ios/Podfile.lock +561 -561
  55. package/example/ios/_xcode.env +11 -11
  56. package/example/ios/example/AppDelegate.h +8 -8
  57. package/example/ios/example/AppDelegate.mm +174 -174
  58. package/example/ios/example/Images.xcassets/AppIcon.appiconset/Contents.json +53 -53
  59. package/example/ios/example/Images.xcassets/Contents.json +6 -6
  60. package/example/ios/example/Info.plist +62 -62
  61. package/example/ios/example/LaunchScreen.storyboard +47 -47
  62. package/example/ios/example/example.entitlements +8 -8
  63. package/example/ios/example/main.m +10 -10
  64. package/example/ios/example.xcodeproj/project.pbxproj +712 -712
  65. package/example/ios/example.xcodeproj/xcshareddata/xcschemes/example.xcscheme +88 -88
  66. package/example/ios/example.xcworkspace/contents.xcworkspacedata +10 -10
  67. package/example/ios/example.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -8
  68. package/example/ios/exampleTests/Info.plist +24 -24
  69. package/example/ios/exampleTests/exampleTests.m +66 -66
  70. package/example/metro.config.js +17 -17
  71. package/example/package.json +36 -36
  72. package/example/yarn.lock +7176 -7176
  73. package/index.js +590 -590
  74. package/ios/AppICEReactEvent.h +23 -23
  75. package/ios/AppICEReactEvent.m +86 -86
  76. package/ios/AppIceReactPlugin.h +65 -65
  77. package/ios/AppIceReactPlugin.m +683 -683
  78. package/ios/AppIceReactPlugin.xcodeproj/project.pbxproj +364 -364
  79. package/ios/AppIceReactPlugin.xcodeproj/project.xcworkspace/contents.xcworkspacedata +4 -4
  80. package/ios/AppIceReactPlugin.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -8
  81. package/ios/AppIceReactPlugin.xcodeproj/xcuserdata/Adi.xcuserdatad/xcschemes/xcschememanagement.plist +14 -14
  82. package/ios/AppIceReactPlugin.xcodeproj/xcuserdata/artherajesh.xcuserdatad/xcschemes/xcschememanagement.plist +14 -14
  83. package/ios/AppIceReactPlugin.xcworkspace/contents.xcworkspacedata +10 -10
  84. package/ios/AppIceReactPlugin.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -8
  85. package/ios/Podfile +10 -10
  86. package/ios/Podfile.lock +3 -3
  87. package/ios/Pods/Manifest.lock +3 -3
  88. package/ios/Pods/Pods.xcodeproj/project.pbxproj +395 -395
  89. package/ios/Pods/Pods.xcodeproj/xcuserdata/Adi.xcuserdatad/xcschemes/Pods-AppIceReactPlugin.xcscheme +58 -58
  90. package/ios/Pods/Pods.xcodeproj/xcuserdata/Adi.xcuserdatad/xcschemes/xcschememanagement.plist +18 -18
  91. package/ios/Pods/Pods.xcodeproj/xcuserdata/artherajesh.xcuserdatad/xcschemes/xcschememanagement.plist +14 -14
  92. package/ios/Pods/Target Support Files/Pods-AppIceReactPlugin/Pods-AppIceReactPlugin-Info.plist +26 -26
  93. package/ios/Pods/Target Support Files/Pods-AppIceReactPlugin/Pods-AppIceReactPlugin-acknowledgements.markdown +3 -3
  94. package/ios/Pods/Target Support Files/Pods-AppIceReactPlugin/Pods-AppIceReactPlugin-acknowledgements.plist +29 -29
  95. package/ios/Pods/Target Support Files/Pods-AppIceReactPlugin/Pods-AppIceReactPlugin-dummy.m +5 -5
  96. package/ios/Pods/Target Support Files/Pods-AppIceReactPlugin/Pods-AppIceReactPlugin-umbrella.h +16 -16
  97. package/ios/Pods/Target Support Files/Pods-AppIceReactPlugin/Pods-AppIceReactPlugin.debug.xcconfig +6 -6
  98. package/ios/Pods/Target Support Files/Pods-AppIceReactPlugin/Pods-AppIceReactPlugin.modulemap +6 -6
  99. package/ios/Pods/Target Support Files/Pods-AppIceReactPlugin/Pods-AppIceReactPlugin.release.xcconfig +6 -6
  100. package/package.json +6 -9
  101. package/reactnative-plugin-appice.podspec +30 -30
package/README.md CHANGED
@@ -1,38 +1,38 @@
1
- # src_reactnative_appice-sdk
2
-
3
- # android
4
-
5
- # add the following tag in app's manifest
6
-
7
- <activity
8
- android:name="semusi.context.ui.UIEventsHandler"
9
- android:exported="false"
10
- android:protectionLevel="signature"
11
- android:theme="@android:style/Theme.Translucent.NoTitleBar"/>
12
-
13
-
14
- # in app's build.gradle
15
-
16
- //appice
17
- implementation 'appice.io.android:sdk:2.5.59'
18
-
19
- //glide
20
- implementation "com.github.bumptech.glide:glide:4.10.0"
21
-
22
-
23
- # add this maven url in project's build.gradle
24
-
25
- allprojects {
26
- repositories {
27
- maven {
28
- url "https://gitlab.com/api/v4/projects/project-id/packages/maven" //contact support@appice.io for projectId details
29
- credentials(HttpHeaderCredentials) {
30
- name = "Deploy-Token"
31
- value = "" //contact support@appice.io for token details
32
- }
33
- authentication {
34
- header(HttpHeaderAuthentication)
35
- }
36
- }
37
- }
1
+ # src_reactnative_appice-sdk
2
+
3
+ # android
4
+
5
+ # add the following tag in app's manifest
6
+
7
+ <activity
8
+ android:name="semusi.context.ui.UIEventsHandler"
9
+ android:exported="false"
10
+ android:protectionLevel="signature"
11
+ android:theme="@android:style/Theme.Translucent.NoTitleBar"/>
12
+
13
+
14
+ # in app's build.gradle
15
+
16
+ //appice
17
+ implementation 'appice.io.android:sdk:2.5.59'
18
+
19
+ //glide
20
+ implementation "com.github.bumptech.glide:glide:4.10.0"
21
+
22
+
23
+ # add this maven url in project's build.gradle
24
+
25
+ allprojects {
26
+ repositories {
27
+ maven {
28
+ url "https://gitlab.com/api/v4/projects/project-id/packages/maven" //contact support@appice.io for projectId details
29
+ credentials(HttpHeaderCredentials) {
30
+ name = "Deploy-Token"
31
+ value = "" //contact support@appice.io for token details
32
+ }
33
+ authentication {
34
+ header(HttpHeaderAuthentication)
35
+ }
36
+ }
37
+ }
38
38
  }
package/android/README.md CHANGED
@@ -1,14 +1,14 @@
1
- README
2
- ======
3
-
4
- If you want to publish the lib as a maven dependency, follow these steps before publishing a new version to npm:
5
-
6
- 1. Be sure to have the Android [SDK](https://developer.android.com/studio/index.html) and [NDK](https://developer.android.com/ndk/guides/index.html) installed
7
- 2. Be sure to have a `local.properties` file in this folder that points to the Android SDK and NDK
8
- ```
9
- ndk.dir=/Users/{username}/Library/Android/sdk/ndk-bundle
10
- sdk.dir=/Users/{username}/Library/Android/sdk
11
- ```
12
- 3. Delete the `maven` folder
13
- 4. Run `./gradlew installArchives`
14
- 5. Verify that latest set of generated files is in the maven folder with the correct version number
1
+ README
2
+ ======
3
+
4
+ If you want to publish the lib as a maven dependency, follow these steps before publishing a new version to npm:
5
+
6
+ 1. Be sure to have the Android [SDK](https://developer.android.com/studio/index.html) and [NDK](https://developer.android.com/ndk/guides/index.html) installed
7
+ 2. Be sure to have a `local.properties` file in this folder that points to the Android SDK and NDK
8
+ ```
9
+ ndk.dir=/Users/{username}/Library/Android/sdk/ndk-bundle
10
+ sdk.dir=/Users/{username}/Library/Android/sdk
11
+ ```
12
+ 3. Delete the `maven` folder
13
+ 4. Run `./gradlew installArchives`
14
+ 5. Verify that latest set of generated files is in the maven folder with the correct version number
@@ -1,158 +1,138 @@
1
- // android/build.gradle
2
-
3
- // based on:
4
- //
5
- // * https://github.com/facebook/react-native/blob/0.60-stable/template/android/build.gradle
6
- // original location:
7
- // - https://github.com/facebook/react-native/blob/0.58-stable/local-cli/templates/HelloWorld/android/build.gradle
8
- //
9
- // * https://github.com/facebook/react-native/blob/0.60-stable/template/android/app/build.gradle
10
- // original location:
11
- // - https://github.com/facebook/react-native/blob/0.58-stable/local-cli/templates/HelloWorld/android/app/build.gradle
12
-
13
- def DEFAULT_COMPILE_SDK_VERSION = 34
14
- def DEFAULT_MIN_SDK_VERSION = 21
15
- def DEFAULT_TARGET_SDK_VERSION = 34
16
-
17
- def safeExtGet(prop, fallback) {
18
- rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback
19
- }
20
-
21
- apply plugin: 'com.android.library'
22
-
23
- buildscript {
24
- // The Android Gradle plugin is only required when opening the android folder stand-alone.
25
- // This avoids unnecessary downloads and potential conflicts when the library is included as a
26
- // module dependency in an application project.
27
- // ref: https://docs.gradle.org/current/userguide/tutorial_using_tasks.html#sec:build_script_external_dependencies
28
- if (project == rootProject) {
29
- repositories {
30
- google()
31
- jcenter()
32
- }
33
- dependencies {
34
- classpath 'com.android.tools.build:gradle:3.4.3'
35
- }
36
- }
37
- }
38
-
39
- apply plugin: 'com.android.library'
40
-
41
- android {
42
- compileSdkVersion safeExtGet('compileSdkVersion', DEFAULT_COMPILE_SDK_VERSION)
43
- defaultConfig {
44
- minSdkVersion safeExtGet('minSdkVersion', DEFAULT_MIN_SDK_VERSION)
45
- targetSdkVersion safeExtGet('targetSdkVersion', DEFAULT_TARGET_SDK_VERSION)
46
- versionCode 2
47
- versionName "2.0"
48
- multiDexEnabled true
49
- }
50
- lintOptions {
51
- abortOnError false
52
- }
53
- }
54
-
55
- repositories {
56
- // ref: https://www.baeldung.com/maven-local-repository
57
- mavenLocal()
58
- maven {
59
- // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
60
- url "$rootDir/../node_modules/react-native/android"
61
- }
62
- maven {
63
- // Android JSC is installed from npm
64
- url "$rootDir/../node_modules/jsc-android/dist"
65
- }
66
- maven { url "https://jitpack.io" }
67
- maven {
68
- url "https://gitlab.com/api/v4/projects/10636887/packages/maven"
69
- credentials(HttpHeaderCredentials) {
70
- name = "Deploy-Token"
71
- value = "gldt-ayJbLQtEd-nfQG6puvoD"
72
- }
73
- authentication {
74
- header(HttpHeaderAuthentication)
75
- }
76
- }
77
- google()
78
- jcenter()
79
- }
80
-
81
-
82
- dependencies {
83
-
84
- //noinspection GradleDynamicVersion
85
- implementation 'com.facebook.react:react-native:+'
86
-
87
- //google location
88
- implementation "com.google.android.gms:play-services-location:21.0.1"
89
-
90
- //google legacy support
91
- implementation "androidx.legacy:legacy-support-v4:1.0.0"
92
-
93
- // annotation
94
- implementation "androidx.annotation:annotation:1.2.0"
95
-
96
- //work manager
97
- implementation "androidx.work:work-runtime:2.7.1"
98
-
99
- // concurrent future
100
- implementation "androidx.concurrent:concurrent-futures:1.1.0"
101
-
102
- // segment extractor
103
- implementation "com.android.installreferrer:installreferrer:2.2"
104
-
105
- //firebase
106
- implementation "com.google.firebase:firebase-messaging:24.0.0"
107
-
108
- // maps
109
- implementation "com.google.android.gms:play-services-maps:18.0.0"
110
- implementation 'com.google.maps.android:android-maps-utils:2.3.0'
111
-
112
- //lifecycle
113
- implementation "androidx.lifecycle:lifecycle-extensions:2.2.0"
114
- annotationProcessor "androidx.lifecycle:lifecycle-compiler:2.3.1"
115
-
116
- //appice
117
- implementation "appice.io.android:sdk:2.6.18-release"
118
-
119
- //glide
120
- implementation "com.github.bumptech.glide:glide:4.11.0"
121
- annotationProcessor 'com.github.bumptech.glide:compiler:4.11.0'
122
-
123
- // multidex
124
- implementation 'com.android.support:multidex:1.0.3'
125
-
126
- //media3
127
- implementation "androidx.media3:media3-exoplayer:1.0.2"
128
- implementation "androidx.media3:media3-ui:1.0.2"
129
- }
130
-
131
- def configureReactNativePom(def pom) {
132
- def packageJson = new groovy.json.JsonSlurper().parseText(file('../package.json').text)
133
-
134
- pom.project {
135
- name packageJson.title
136
- artifactId packageJson.name
137
- version = packageJson.version
138
- group = "com.reactlibrary"
139
- description packageJson.description
140
- url packageJson.repository.baseUrl
141
-
142
- licenses {
143
- license {
144
- name packageJson.license
145
- url packageJson.repository.baseUrl + '/blob/master/' + packageJson.licenseFilename
146
- distribution 'repo'
147
- }
148
- }
149
-
150
- developers {
151
- developer {
152
- id packageJson.author.username
153
- name packageJson.author.name
154
- }
155
- }
156
- }
157
- }
158
-
1
+ def DEFAULT_COMPILE_SDK_VERSION = 35
2
+ def DEFAULT_MIN_SDK_VERSION = 21
3
+ def DEFAULT_TARGET_SDK_VERSION = 35
4
+
5
+ def safeExtGet(prop, fallback) {
6
+ rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback
7
+ }
8
+
9
+ apply plugin: 'com.android.library'
10
+
11
+ buildscript {
12
+
13
+ if (project == rootProject) {
14
+ repositories {
15
+ google()
16
+ }
17
+ }
18
+ }
19
+
20
+ apply plugin: 'com.android.library'
21
+
22
+ android {
23
+ compileSdkVersion safeExtGet('compileSdkVersion', DEFAULT_COMPILE_SDK_VERSION)
24
+ defaultConfig {
25
+ minSdkVersion safeExtGet('minSdkVersion', DEFAULT_MIN_SDK_VERSION)
26
+ targetSdkVersion safeExtGet('targetSdkVersion', DEFAULT_TARGET_SDK_VERSION)
27
+ versionCode 3
28
+ versionName "3.0"
29
+ multiDexEnabled true
30
+ }
31
+ lintOptions {
32
+ abortOnError false
33
+ }
34
+ namespace 'com.appice.react'
35
+ }
36
+
37
+ repositories {
38
+ mavenLocal()
39
+ maven {
40
+ // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
41
+ url "$rootDir/../node_modules/react-native/android"
42
+ }
43
+ maven {
44
+ // Android JSC is installed from npm
45
+ url "$rootDir/../node_modules/jsc-android/dist"
46
+ }
47
+ maven { url "https://jitpack.io" }
48
+ maven {
49
+ url "https://gitlab.com/api/v4/projects/10636887/packages/maven"
50
+ credentials(HttpHeaderCredentials) {
51
+ name = "Deploy-Token"
52
+ value = "gldt-ayJbLQtEd-nfQG6puvoD"
53
+ }
54
+ authentication {
55
+ header(HttpHeaderAuthentication)
56
+ }
57
+ }
58
+ google()
59
+ }
60
+
61
+
62
+ dependencies {
63
+
64
+ //noinspection GradleDynamicVersion
65
+ implementation 'com.facebook.react:react-native:+'
66
+
67
+ //google location
68
+ implementation "com.google.android.gms:play-services-location:21.0.1"
69
+
70
+ //google legacy support
71
+ implementation "androidx.legacy:legacy-support-v4:1.0.0"
72
+
73
+ // annotation
74
+ implementation "androidx.annotation:annotation:1.2.0"
75
+
76
+ //work manager
77
+ implementation "androidx.work:work-runtime:2.7.1"
78
+
79
+ // concurrent future
80
+ implementation "androidx.concurrent:concurrent-futures:1.1.0"
81
+
82
+ // segment extractor
83
+ implementation "com.android.installreferrer:installreferrer:2.2"
84
+
85
+ //firebase
86
+ implementation "com.google.firebase:firebase-messaging:24.0.0"
87
+
88
+ // maps
89
+ implementation "com.google.android.gms:play-services-maps:18.0.0"
90
+ implementation 'com.google.maps.android:android-maps-utils:2.3.0'
91
+
92
+ //lifecycle
93
+ implementation "androidx.lifecycle:lifecycle-extensions:2.2.0"
94
+ annotationProcessor "androidx.lifecycle:lifecycle-compiler:2.3.1"
95
+
96
+ //appice
97
+ implementation "appice.io.android:sdk:2.6.20"
98
+
99
+ //glide
100
+ implementation "com.github.bumptech.glide:glide:4.11.0"
101
+ annotationProcessor 'com.github.bumptech.glide:compiler:4.11.0'
102
+
103
+ // multidex
104
+ implementation 'com.android.support:multidex:1.0.3'
105
+
106
+ //media3
107
+ implementation "androidx.media3:media3-exoplayer:1.0.2"
108
+ implementation "androidx.media3:media3-ui:1.0.2"
109
+ }
110
+
111
+ def configureReactNativePom(def pom) {
112
+ def packageJson = new groovy.json.JsonSlurper().parseText(file('../package.json').text)
113
+
114
+ pom.project {
115
+ name packageJson.title
116
+ artifactId packageJson.name
117
+ version = packageJson.version
118
+ group = "com.reactlibrary"
119
+ description packageJson.description
120
+ url packageJson.repository.baseUrl
121
+
122
+ licenses {
123
+ license {
124
+ name packageJson.license
125
+ url packageJson.repository.baseUrl + '/blob/master/' + packageJson.licenseFilename
126
+ distribution 'repo'
127
+ }
128
+ }
129
+
130
+ developers {
131
+ developer {
132
+ id packageJson.author.username
133
+ name packageJson.author.name
134
+ }
135
+ }
136
+ }
137
+ }
138
+
package/android/gitignore CHANGED
@@ -1,48 +1,48 @@
1
- /build
2
- # User-specific stuff:
3
- .idea/workspace.xml
4
- .idea/tasks.xml
5
- .idea/dictionaries
6
- .idea/vcs.xml
7
- .idea/jsLibraryMappings.xml
8
-
9
- # Sensitive or high-churn files:
10
- .idea/dataSources.ids
11
- .idea/dataSources.xml
12
- .idea/dataSources.local.xml
13
- .idea/sqlDataSources.xml
14
- .idea/dynamic.xml
15
- .idea/uiDesigner.xml
16
-
17
- # Gradle:
18
- .idea/gradle.xml
19
- .idea/libraries
20
-
21
- # Mongo Explorer plugin:
22
- .idea/mongoSettings.xml
23
-
24
- ## File-based project format:
25
- *.iws
26
-
27
- ## Plugin-specific files:
28
-
29
- # IntelliJ
30
- /out/
31
-
32
- # mpeltonen/sbt-idea plugin
33
- .idea_modules/
34
-
35
- # JIRA plugin
36
- atlassian-ide-plugin.xml
37
-
38
- # Crashlytics plugin (for Android Studio and IntelliJ)
39
- com_crashlytics_export_strings.xml
40
- crashlytics.properties
41
- crashlytics-build.properties
42
- fabric.properties
43
-
44
- ### Intellij Patch ###
45
- # Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
46
-
47
- android.iml
1
+ /build
2
+ # User-specific stuff:
3
+ .idea/workspace.xml
4
+ .idea/tasks.xml
5
+ .idea/dictionaries
6
+ .idea/vcs.xml
7
+ .idea/jsLibraryMappings.xml
8
+
9
+ # Sensitive or high-churn files:
10
+ .idea/dataSources.ids
11
+ .idea/dataSources.xml
12
+ .idea/dataSources.local.xml
13
+ .idea/sqlDataSources.xml
14
+ .idea/dynamic.xml
15
+ .idea/uiDesigner.xml
16
+
17
+ # Gradle:
18
+ .idea/gradle.xml
19
+ .idea/libraries
20
+
21
+ # Mongo Explorer plugin:
22
+ .idea/mongoSettings.xml
23
+
24
+ ## File-based project format:
25
+ *.iws
26
+
27
+ ## Plugin-specific files:
28
+
29
+ # IntelliJ
30
+ /out/
31
+
32
+ # mpeltonen/sbt-idea plugin
33
+ .idea_modules/
34
+
35
+ # JIRA plugin
36
+ atlassian-ide-plugin.xml
37
+
38
+ # Crashlytics plugin (for Android Studio and IntelliJ)
39
+ com_crashlytics_export_strings.xml
40
+ crashlytics.properties
41
+ crashlytics-build.properties
42
+ fabric.properties
43
+
44
+ ### Intellij Patch ###
45
+ # Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
46
+
47
+ android.iml
48
48
  # modules.xml
@@ -1,5 +1,5 @@
1
- distributionBase=GRADLE_USER_HOME
2
- distributionPath=wrapper/dists
3
- distributionUrl=https\://services.gradle.org/distributions/gradle-7.2-bin.zip
4
- zipStoreBase=GRADLE_USER_HOME
5
- zipStorePath=wrapper/dists
1
+ distributionBase=GRADLE_USER_HOME
2
+ distributionPath=wrapper/dists
3
+ distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-all.zip
4
+ zipStoreBase=GRADLE_USER_HOME
5
+ zipStorePath=wrapper/dists