affise-attribution-lib 1.1.4 → 1.1.5
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 +17 -0
- package/android/build.gradle +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -57,6 +57,23 @@ Installation using yarn
|
|
|
57
57
|
yarn add affise-attribution-lib
|
|
58
58
|
```
|
|
59
59
|
|
|
60
|
+
#### Add platform modules
|
|
61
|
+
|
|
62
|
+
##### Android
|
|
63
|
+
|
|
64
|
+
Add modules to android project
|
|
65
|
+
|
|
66
|
+
Example `example/android/app/build.gradle`
|
|
67
|
+
|
|
68
|
+
```gradle
|
|
69
|
+
dependencies {
|
|
70
|
+
// Affise modules
|
|
71
|
+
implementation 'com.affise:module-advertising:1.5.4'
|
|
72
|
+
implementation 'com.affise:module-network:1.5.4'
|
|
73
|
+
implementation 'com.affise:module-phone:1.5.4'
|
|
74
|
+
}
|
|
75
|
+
```
|
|
76
|
+
|
|
60
77
|
### Initialize
|
|
61
78
|
|
|
62
79
|
After dependency is added, and project is sync with `npm install` and initialize.
|
package/android/build.gradle
CHANGED
|
@@ -73,7 +73,7 @@ dependencies {
|
|
|
73
73
|
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
|
|
74
74
|
|
|
75
75
|
implementation "com.android.installreferrer:installreferrer:2.2"
|
|
76
|
-
implementation "com.affise:attribution:1.5.
|
|
76
|
+
implementation "com.affise:attribution:1.5.4"
|
|
77
77
|
}
|
|
78
78
|
|
|
79
79
|
if (isNewArchitectureEnabled()) {
|