Skip to content

Commit

Permalink
v1.6.24
Browse files Browse the repository at this point in the history
  • Loading branch information
Sergey Korney committed Feb 7, 2024
1 parent f72c8b0 commit 984861a
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 28 deletions.
44 changes: 22 additions & 22 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,12 +84,12 @@ For kotlin build script build.gradle.kts use:
```kotlin
dependencies {
// Add Affise library
implementation("com.affise:attribution:1.6.23")
implementation("com.affise:attribution:1.6.24")
// Add Affise modules
implementation("com.affise:module-advertising:1.6.23")
implementation("com.affise:module-network:1.6.23")
implementation("com.affise:module-phone:1.6.23")
implementation("com.affise:module-status:1.6.23")
implementation("com.affise:module-advertising:1.6.24")
implementation("com.affise:module-network:1.6.24")
implementation("com.affise:module-phone:1.6.24")
implementation("com.affise:module-status:1.6.24")
// Add install referrer
implementation("com.android.installreferrer:installreferrer:2.2")
}
Expand All @@ -100,22 +100,22 @@ For groovy build script build.gradle use:
```groovy
dependencies {
// Add Affise library
implementation 'com.affise:attribution:1.6.23'
implementation 'com.affise:attribution:1.6.24'
// Add Affise modules
implementation 'com.affise:module-advertising:1.6.23'
implementation 'com.affise:module-network:1.6.23'
implementation 'com.affise:module-phone:1.6.23'
implementation 'com.affise:module-status:1.6.23'
implementation 'com.affise:module-advertising:1.6.24'
implementation 'com.affise:module-network:1.6.24'
implementation 'com.affise:module-phone:1.6.24'
implementation 'com.affise:module-status:1.6.24'
// Add install referrer
implementation 'com.android.installreferrer:installreferrer:2.2'
}
```

### Integrate as file dependency

Download latest Affise SDK (`attribution-1.6.23.aar`)
Download latest Affise SDK (`attribution-1.6.24.aar`)
from [releases page](https://github.com/affise/sdk-android/releases) and place this binary to gradle application
module lib directory `app/libs/attribution-1.6.23.aar`
module lib directory `app/libs/attribution-1.6.24.aar`

Add library as gradle file dependency to application module build script
Add install referrer library
Expand All @@ -126,12 +126,12 @@ For kotlin build script build.gradle.kts use:
dependencies {
// ...
// Add Affise library
implementation(files("libs/attribution-1.6.23.aar"))
implementation(files("libs/attribution-1.6.24.aar"))
// Add Affise modules
implementation(files("libs/module-advertising-1.6.23.aar"))
implementation(files("libs/module-network-1.6.23.aar"))
implementation(files("libs/module-phone-1.6.23.aar"))
implementation(files("libs/module-status-1.6.23.aar"))
implementation(files("libs/module-advertising-1.6.24.aar"))
implementation(files("libs/module-network-1.6.24.aar"))
implementation(files("libs/module-phone-1.6.24.aar"))
implementation(files("libs/module-status-1.6.24.aar"))
// Add install referrer
implementation("com.android.installreferrer:installreferrer:2.2")
}
Expand All @@ -143,12 +143,12 @@ For groovy build script build.gradle use:
dependencies {
// ...
// Add Affise library
implementation files('libs/attribution-1.6.23.aar')
implementation files('libs/attribution-1.6.24.aar')
// Add Affise modules
implementation files('libs/module-advertising-1.6.23.aar')
implementation files('libs/module-network-1.6.23.aar')
implementation files('libs/module-phone-1.6.23.aar')
implementation files('libs/module-status-1.6.23.aar')
implementation files('libs/module-advertising-1.6.24.aar')
implementation files('libs/module-network-1.6.24.aar')
implementation files('libs/module-phone-1.6.24.aar')
implementation files('libs/module-status-1.6.24.aar')
// Add install referrer
implementation 'com.android.installreferrer:installreferrer:2.2'
}
Expand Down
11 changes: 6 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = "1.6.0"
ext.dokkaVersion = "1.7.20"
ext.dokka_version = "1.7.20"
ext.agp_version = "7.2.2"
repositories {
google()
mavenCentral()
}
dependencies {
classpath "com.android.tools.build:gradle:7.0.4"
classpath "com.android.tools.build:gradle:$agp_version"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'com.google.gms:google-services:4.3.15'
classpath "org.jetbrains.dokka:dokka-gradle-plugin:${dokkaVersion}"
classpath "com.google.gms:google-services:4.3.15"
classpath "org.jetbrains.dokka:dokka-gradle-plugin:$dokka_version"

// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
Expand Down Expand Up @@ -38,7 +39,7 @@ static def EnvValue(env, defaultValue) {
}

ext {
affiseVersion = "1.6.23"
affiseVersion = "1.6.24"

testJunit = "4.13.2"
testAndroidxJunit = "1.1.5"
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#Thu Jan 27 12:52:15 MSK 2022
distributionBase=GRADLE_USER_HOME
distributionUrl=https\://services.gradle.org/distributions/gradle-7.0.2-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4.2-bin.zip
distributionPath=wrapper/dists
zipStorePath=wrapper/dists

0 comments on commit 984861a

Please sign in to comment.