react-native-daro 1.0.10 → 1.0.12-beta01
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/android/build.gradle
CHANGED
|
@@ -96,5 +96,5 @@ dependencies {
|
|
|
96
96
|
//noinspection GradleDynamicVersion
|
|
97
97
|
implementation "com.facebook.react:react-android:+"
|
|
98
98
|
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
|
|
99
|
-
|
|
99
|
+
compileOnly "so.daro:daro-a:1.5.1-beta01"
|
|
100
100
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
DaroM_kotlinVersion=
|
|
2
|
-
DaroM_minSdkVersion=
|
|
3
|
-
DaroM_targetSdkVersion=
|
|
4
|
-
DaroM_compileSdkVersion=
|
|
1
|
+
DaroM_kotlinVersion=2.0.21
|
|
2
|
+
DaroM_minSdkVersion=23
|
|
3
|
+
DaroM_targetSdkVersion=34
|
|
4
|
+
DaroM_compileSdkVersion=35
|
|
5
5
|
DaroM_ndkversion=21.4.7075529
|
|
@@ -19,8 +19,8 @@ import com.facebook.react.bridge.ReactContextBaseJavaModule
|
|
|
19
19
|
import com.facebook.react.bridge.ReactMethod
|
|
20
20
|
import com.facebook.react.bridge.ReadableMap
|
|
21
21
|
import com.facebook.react.bridge.WritableMap
|
|
22
|
-
import droom.daro.
|
|
23
|
-
import droom.daro.Daro
|
|
22
|
+
import droom.daro.SDKConfig
|
|
23
|
+
import droom.daro.a.Daro
|
|
24
24
|
|
|
25
25
|
class DaroMModule(reactContext: ReactApplicationContext) :
|
|
26
26
|
ReactContextBaseJavaModule(reactContext) {
|
|
@@ -42,7 +42,7 @@ class DaroMModule(reactContext: ReactApplicationContext) :
|
|
|
42
42
|
Daro.init(
|
|
43
43
|
application = context.applicationContext as Application,
|
|
44
44
|
sdkConfig = SDKConfig.Builder()
|
|
45
|
-
.setDebugMode(
|
|
45
|
+
.setDebugMode(true)
|
|
46
46
|
.build()
|
|
47
47
|
)
|
|
48
48
|
|
package/package.json
CHANGED
|
@@ -16,7 +16,7 @@ Pod::Spec.new do |s|
|
|
|
16
16
|
|
|
17
17
|
s.source_files = "ios/**/*.{h,m,mm,swift}"
|
|
18
18
|
|
|
19
|
-
s.dependency "DaroAds", "1.1.
|
|
19
|
+
s.dependency "DaroAds", "1.1.48"
|
|
20
20
|
|
|
21
21
|
# Use install_modules_dependencies helper to install the dependencies if React Native version >=0.71.0.
|
|
22
22
|
# See https://github.com/facebook/react-native/blob/febf6b7f33fdb4904669f99d795eba4c0f95d7bf/scripts/cocoapods/new_architecture.rb#L79.
|