diff --git a/.github/workflows/debug-build.yml b/.github/workflows/debug-build.yml index d60c1355..205b6d2e 100644 --- a/.github/workflows/debug-build.yml +++ b/.github/workflows/debug-build.yml @@ -13,5 +13,5 @@ jobs: - uses: actions/setup-java@v1 with: java-version: '11' - #- run: ./gradlew test + - run: ./gradlew test - run: ./gradlew assembleDebug -PdoNotStrip diff --git a/app/build.gradle b/app/build.gradle index 1d570280..99aa3133 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -2,8 +2,8 @@ apply plugin: 'com.android.application' android { compileSdkVersion 33 - buildToolsVersion "31.0.0" - ndkVersion "25.0.8775105" + buildToolsVersion "33.0.0" + ndkVersion "25.1.8937393" defaultConfig { applicationId "com.emanuelef.remote_capture" @@ -59,27 +59,28 @@ android { // needed by robolectric unitTests.includeAndroidResources = true } + namespace 'com.emanuelef.remote_capture' } dependencies { // Tests testImplementation 'junit:junit:4.13.2' - testImplementation 'androidx.test:core:1.4.0' - testImplementation "org.robolectric:robolectric:4.8" + testImplementation 'androidx.test:core:1.5.0' + testImplementation "org.robolectric:robolectric:4.9" testImplementation 'org.mockito:mockito-core:1.10.19' // AndroidX implementation 'androidx.appcompat:appcompat:1.5.1' implementation 'androidx.constraintlayout:constraintlayout:2.1.4' - implementation 'androidx.fragment:fragment:1.5.2' + implementation 'androidx.fragment:fragment:1.5.4' implementation 'androidx.localbroadcastmanager:localbroadcastmanager:1.1.0' implementation 'androidx.preference:preference:1.2.0' implementation 'androidx.recyclerview:recyclerview:1.2.1' - implementation "androidx.navigation:navigation-fragment:2.5.2" - implementation "androidx.navigation:navigation-ui:2.5.2" + implementation "androidx.navigation:navigation-fragment:2.5.3" + implementation "androidx.navigation:navigation-ui:2.5.3" // Google - implementation 'com.google.android.material:material:1.6.1' + implementation 'com.google.android.material:material:1.7.0' implementation 'com.google.code.gson:gson:2.9.0' implementation 'org.brotli:dec:0.1.2' diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index f90a3794..a60f405f 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -1,7 +1,6 @@ + xmlns:tools="http://schemas.android.com/tools"> @@ -31,7 +30,6 @@ android:extractNativeLibs="true" android:theme="@style/AppTheme" android:allowBackup="true" - android:fullBackupContent="true" tools:replace="android:label" tools:targetApi="m"> diff --git a/build.gradle b/build.gradle index c2954fa7..99bf8062 100644 --- a/build.gradle +++ b/build.gradle @@ -6,7 +6,7 @@ buildscript { mavenCentral() } dependencies { - classpath 'com.android.tools.build:gradle:7.2.1' + classpath 'com.android.tools.build:gradle:7.3.1' // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files