Skip to content

Commit

Permalink
Merge pull request #35 from tapglue/fix-constructor-visibility-issue
Browse files Browse the repository at this point in the history
Fix constructor visibility issue
  • Loading branch information
nilsen340 committed Mar 1, 2016
2 parents 9daa517 + 8ade85e commit 69a149b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions tapglue-android-sdk/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ android {
minSdkVersion 15
targetSdkVersion 23
versionCode 2
versionName "1.1.5"
versionName "1.1.6"
}

compileOptions {
Expand Down Expand Up @@ -75,7 +75,7 @@ ext {
siteUrl = 'https://github.com/tapglue/android_sdk'
gitUrl = 'https://github.com/tapglue/android_sdk.git'

libraryVersion = '1.1.5'
libraryVersion = '1.1.6'

developerId = 'tapglue'
developerName = 'Tapglue'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public class TGAttachment extends TGBaseObject<TGAttachment> {
@SerializedName("type")
private String type;

TGAttachment(@NonNull TGCustomCacheObject.TGCacheObjectType type) {
public TGAttachment(@NonNull TGCustomCacheObject.TGCacheObjectType type) {
super(type);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ public class TGNetworkManager {
* Current library version - string used in requests
*/
@NonNull
private static final String currentLibraryVersion = "1.1.5";
private static final String currentLibraryVersion = "1.1.6";

/**
* Custom headers required for analytics purposes
Expand Down

0 comments on commit 69a149b

Please sign in to comment.