File tree Expand file tree Collapse file tree 3 files changed +11
-7
lines changed
src/main/java/com/tumuyan/ncnn/realsr Expand file tree Collapse file tree 3 files changed +11
-7
lines changed Original file line number Diff line number Diff 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 {
5555dependencies {
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}
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 11// Top-level build file where you can add configuration options common to all sub-projects/modules.
22plugins {
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
77task clean (type : Delete ) {
You can’t perform that action at this time.
0 commit comments