File tree Expand file tree Collapse file tree 2 files changed +8
-3
lines changed
src/main/java/ru/plumsoftware/notebook/activities Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -10,8 +10,8 @@ android {
10
10
applicationId " ru.plumsoftware.notebook"
11
11
minSdk 22
12
12
targetSdk 34
13
- versionCode 25
14
- versionName " 1.5.5 "
13
+ versionCode 26
14
+ versionName " 1.5.6 "
15
15
16
16
testInstrumentationRunner " androidx.test.runner.AndroidJUnitRunner"
17
17
}
Original file line number Diff line number Diff line change @@ -441,9 +441,9 @@ public void onBackPressed() {
441
441
intent .putExtra ("LoadInterstitialAd" , false );
442
442
}
443
443
// super.onBackPressed();
444
- progressDialog .showDialog ();
445
444
if (isLoadIntAds )
446
445
if (mInterstitialAdLoader != null ) {
446
+ progressDialog .showDialog ();
447
447
final AdRequestConfiguration adRequestConfiguration =
448
448
new AdRequestConfiguration .Builder ("R-M-1957919-2" ).build ();
449
449
mInterstitialAdLoader .loadAd (adRequestConfiguration );
@@ -452,6 +452,11 @@ public void onBackPressed() {
452
452
overridePendingTransition (0 , 0 );
453
453
finish ();
454
454
}
455
+ else {
456
+ startActivity (intent );
457
+ overridePendingTransition (0 , 0 );
458
+ finish ();
459
+ }
455
460
}
456
461
457
462
private void setDateAndTime () {
You can’t perform that action at this time.
0 commit comments