Skip to content

Commit

Permalink
Initial beta release
Browse files Browse the repository at this point in the history
  • Loading branch information
Rahul Kumar committed Sep 13, 2017
1 parent 03f139a commit 6744f3c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ android {

defaultConfig {
applicationId "com.performancetweaker.app"
versionCode 10
versionName "0.1.10"
versionCode 11
versionName "0.1.11"
minSdkVersion 15
targetSdkVersion 26
}
Expand Down Expand Up @@ -43,7 +43,7 @@ repositories {
dependencies {

ext {
supportLibVersion = '26.0.0'
supportLibVersion = '26.0.2'
}

compile project(':androidCommon')
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ public void run() {
if (fragment != null) {
FragmentTransaction fragmentTransaction = getFragmentManager().beginTransaction();
fragmentTransaction.setCustomAnimations(R.animator.enter_anim, R.animator.exit_animation);
fragmentTransaction.replace(R.id.main_content, fragment).commit();
fragmentTransaction.replace(R.id.main_content, fragment).commitAllowingStateLoss();
}
}
}, 400);
Expand Down

0 comments on commit 6744f3c

Please sign in to comment.