Skip to content

Commit

Permalink
Updated Version and README
Browse files Browse the repository at this point in the history
  • Loading branch information
arnabp92 committed Apr 14, 2020
1 parent 8357e9d commit b0f7ccf
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 12 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ repositories {
```
3. Add the dependency under ```dependencies```
```
implementation 'com.rudderstack.android.sdk:core:1.0.1-beta.2'
implementation 'com.rudderstack.android.integration:appsflyer:0.1.0-beta.2'
implementation 'com.rudderstack.android.sdk:core:1.0.1'
implementation 'com.rudderstack.android.integration:appsflyer:0.1.1'
// appsflyer dependencies
implementation 'com.appsflyer:af-android-sdk:5.1.1'
Expand Down Expand Up @@ -54,4 +54,4 @@ rudderClient.onIntegrationReady("AppsFlyer") {
Follow the steps from [Rudder Android SDK](https://github.com/rudderlabs/rudder-sdk-android)

## Contact Us
If you come across any issues while configuring or using RudderStack, please feel free to [contact us](https://rudderstack.com/contact/) or start a conversation on our [Discord](https://discordapp.com/invite/xNEdEGw) channel. We will be happy to help you.
If you come across any issues while configuring or using RudderStack, please feel free to [contact us](https://rudderstack.com/contact/) or start a conversation on our [Discord](https://discordapp.com/invite/xNEdEGw) channel. We will be happy to help you.
6 changes: 3 additions & 3 deletions appsflyer/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@ apply plugin: 'com.jfrog.bintray'

android {
compileSdkVersion 29
buildToolsVersion "29.0.2"
buildToolsVersion "29.0.3"


defaultConfig {
minSdkVersion 14
targetSdkVersion 29
versionCode 1
versionName "0.1.0-beta.2"
versionName "0.1.1"
}

buildTypes {
Expand All @@ -40,7 +40,7 @@ repositories {
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
// rudder core sdk
compileOnly 'com.rudderstack.android.sdk:core:1.0.1-beta.2'
compileOnly 'com.rudderstack.android.sdk:core:1.0.1'

// appsflyer dependencies
implementation 'com.appsflyer:af-android-sdk:5.1.1'
Expand Down
2 changes: 1 addition & 1 deletion appsflyer/maven.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ ext {
siteUrl = 'https://github.com/rudderlabs/rudder-sdk-android'
gitUrl = 'https://github.com/rudderlabs/rudder-integration-appsflyer-android.git'

libraryVersion = '0.1.0-beta.2'
libraryVersion = '0.1.1'

developerId = 'arnabp92'
developerName = 'Arnab Pal'
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ buildscript {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.6.1'
classpath 'com.android.tools.build:gradle:3.6.2'
}
}

Expand Down
4 changes: 2 additions & 2 deletions sample-kotlin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,11 @@ dependencies {
implementation 'androidx.core:core-ktx:1.2.0'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'

implementation 'com.rudderstack.android.sdk:core:1.0.1-beta.2'
implementation 'com.rudderstack.android.sdk:core:1.0.1'
implementation project(':appsflyer')
implementation 'com.appsflyer:af-android-sdk:5.1.1'
implementation 'com.android.installreferrer:installreferrer:1.1.2'
implementation group: 'com.google.code.gson', name: 'gson', version: '2.8.6'
implementation 'com.google.code.gson:gson:2.8.6'

testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test:runner:1.2.0'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ class MainApplication : Application() {
companion object {
private const val WRITE_KEY = "1ZDlYiFCh4wwGZc2o0Ua8pDYDLy"
private const val DATA_PLANE_URL = "https://a0a95e46.ngrok.io"
private const val CONTROL_PLANE_URL = "https://api.dev.rudderlabs.com"
lateinit var rudderClient: RudderClient
}

Expand All @@ -22,7 +21,6 @@ class MainApplication : Application() {
WRITE_KEY,
RudderConfig.Builder()
.withDataPlaneUrl(DATA_PLANE_URL)
.withControlPlaneUrl(CONTROL_PLANE_URL)
.withFactory(AppsFlyerIntegrationFactory.FACTORY)
.withLogLevel(RudderLogger.RudderLogLevel.DEBUG)
.build()
Expand Down

0 comments on commit b0f7ccf

Please sign in to comment.