Skip to content

Commit af9a05f

Browse files
committed
bump to 1.12.0
1 parent 80fa451 commit af9a05f

File tree

3 files changed

+11
-7
lines changed

3 files changed

+11
-7
lines changed

RealSR-NCNN-Android-GUI/app/build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ android {
1010
minSdk 24
1111
//noinspection ExpiredTargetSdkVersion
1212
targetSdk 28
13-
versionCode 48
14-
versionName '1.11.4'
13+
versionCode 49
14+
versionName '1.12.0'
1515

1616
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1717
}
@@ -55,9 +55,9 @@ android {
5555
dependencies {
5656
// Dependency 'androidx.appcompat:appcompat:1.4.1' requires API level 31
5757
implementation 'androidx.appcompat:appcompat:1.3.0'
58-
implementation 'com.google.android.material:material:1.5.0-alpha01'
58+
implementation 'com.google.android.material:material:1.13.0'
5959
testImplementation 'junit:junit:4.13.2'
60-
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
61-
androidTestImplementation 'androidx.test.espresso:espresso-core:3.6.1'
60+
// androidTestImplementation 'androidx.test.ext:junit:1.1.3'
61+
// androidTestImplementation 'androidx.test.espresso:espresso-core:3.6.1'
6262
implementation 'com.davemorrissey.labs:subsampling-scale-image-view-androidx:3.10.0'
6363
}

RealSR-NCNN-Android-GUI/app/src/main/java/com/tumuyan/ncnn/realsr/MainActivity.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -664,6 +664,10 @@ protected void onCreate(Bundle savedInstanceState) {
664664
super.onCreate(savedInstanceState);
665665
setContentView(R.layout.activity_main);
666666

667+
if (BuildConfig.DEBUG) {
668+
setTitle(getString(R.string.app_name) + " (Debug)");
669+
}
670+
667671
Intent serviceIntent = new Intent(this, ProcessingService.class);
668672
bindService(serviceIntent, connection, Context.BIND_AUTO_CREATE);
669673

RealSR-NCNN-Android-GUI/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Top-level build file where you can add configuration options common to all sub-projects/modules.
22
plugins {
3-
id 'com.android.application' version '8.11.1' apply false
4-
id 'com.android.library' version '8.11.1' apply false
3+
id 'com.android.application' version '8.13.1' apply false
4+
id 'com.android.library' version '8.13.1' apply false
55
}
66

77
task clean(type: Delete) {

0 commit comments

Comments
 (0)