Skip to content

Commit

Permalink
Merge pull request #12 from tapleader/service
Browse files Browse the repository at this point in the history
Service
  • Loading branch information
makbn authored Jul 1, 2017
2 parents 39e03b6 + f65e38e commit 001de34
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ allprojects {
* Add the dependency to your app module `build.gradle`
```gradle
dependencies {
compile 'com.github.tapleader:tapleader-sdk-android:v1.3.2'
compile 'com.github.tapleader:tapleader-sdk-android:v1.3.3'
//...
}
```
Expand Down
5 changes: 3 additions & 2 deletions Sample/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,10 @@
<meta-data
android:name="com.tapleader.CLIENT_KEY"
android:value="a3dbfe5d-fde7-4670-a15d-15b4b97fead4" />
<!-- <meta-data
<meta-data
android:name="com.tapleader.CAMPAIGN_ID"
android:value="cff8" />-->
android:value="YOUR_CAMPAIGN_CODE" />


<activity android:name=".Main2Activity" />
</application>
Expand Down
4 changes: 2 additions & 2 deletions Tapleader-SDK/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ android {
defaultConfig {
minSdkVersion 15
targetSdkVersion 25
versionCode 10
versionName "1.3.2"
versionCode 11
versionName "1.3.3"

}
buildTypes {
Expand Down
1 change: 1 addition & 0 deletions Tapleader-SDK/src/main/java/com/tapleader/TUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -424,6 +424,7 @@ static void updateMoreInfo(Context context,boolean b){
SharedPreferences prefs = context.getSharedPreferences(Constants.Preferences.PREFS_NAME, Context.MODE_PRIVATE);
SharedPreferences.Editor editor = prefs.edit();
editor.putBoolean("MoreInfo",b);
editor.apply();
}

}

0 comments on commit 001de34

Please sign in to comment.