Update Gradle and dependencies

This commit is contained in:
Alexander Bakker 2022-04-09 18:28:15 +02:00
parent b8fa67304a
commit d0c8c5fae4
6 changed files with 19 additions and 20 deletions

View file

@ -36,11 +36,6 @@ android {
testInstrumentationRunnerArguments clearPackageData: 'true' testInstrumentationRunnerArguments clearPackageData: 'true'
} }
lintOptions {
abortOnError true
disable "MissingTranslation"
checkDependencies true
}
testOptions { testOptions {
execution 'ANDROIDX_TEST_ORCHESTRATOR' execution 'ANDROIDX_TEST_ORCHESTRATOR'
@ -105,6 +100,11 @@ android {
sourceCompatibility 1.8 sourceCompatibility 1.8
coreLibraryDesugaringEnabled true coreLibraryDesugaringEnabled true
} }
lint {
abortOnError true
checkDependencies true
disable 'MissingTranslation'
}
} }
protobuf { protobuf {
@ -125,11 +125,11 @@ protobuf {
dependencies { dependencies {
def androidTestVersion = '1.4.0' def androidTestVersion = '1.4.0'
def cameraxVersion = '1.0.2' def cameraxVersion = '1.0.2'
def glideVersion = '4.12.0' def glideVersion = '4.13.1'
def guavaVersion = '31.0.1' def guavaVersion = '31.0.1'
def hiltVersion = '2.38.1' def hiltVersion = '2.41'
def junitVersion = '4.13.2' def junitVersion = '4.13.2'
def libsuVersion = '3.2.1' def libsuVersion = '4.0.3'
annotationProcessor 'androidx.annotation:annotation:1.3.0' annotationProcessor 'androidx.annotation:annotation:1.3.0'
annotationProcessor "com.google.dagger:hilt-compiler:$hiltVersion" annotationProcessor "com.google.dagger:hilt-compiler:$hiltVersion"
@ -166,11 +166,10 @@ dependencies {
implementation 'com.google.zxing:core:3.4.1' implementation 'com.google.zxing:core:3.4.1'
implementation "com.mikepenz:iconics-core:3.2.5" implementation "com.mikepenz:iconics-core:3.2.5"
implementation 'com.mikepenz:material-design-iconic-typeface:2.2.0.5@aar' implementation 'com.mikepenz:material-design-iconic-typeface:2.2.0.5@aar'
implementation 'com.nulab-inc:zxcvbn:1.5.2' implementation 'com.nulab-inc:zxcvbn:1.6.0'
implementation 'de.hdodenhof:circleimageview:3.1.0' implementation 'de.hdodenhof:circleimageview:3.1.0'
implementation 'de.psdev.licensesdialog:licensesdialog:2.2.0' implementation 'de.psdev.licensesdialog:licensesdialog:2.2.0'
// NOTE: this is kept at an old version on purpose (something in newer versions breaks the Authenticator Plus importer) implementation 'net.lingala.zip4j:zip4j:2.10.0'
implementation 'net.lingala.zip4j:zip4j:2.6.0'
implementation 'info.guardianproject.trustedintents:trustedintents:0.2' implementation 'info.guardianproject.trustedintents:trustedintents:0.2'
implementation 'org.bouncycastle:bcprov-jdk15on:1.70' implementation 'org.bouncycastle:bcprov-jdk15on:1.70'
@ -189,7 +188,7 @@ dependencies {
testImplementation "androidx.test:core:${androidTestVersion}" testImplementation "androidx.test:core:${androidTestVersion}"
testImplementation "com.google.guava:guava:${guavaVersion}-jre" testImplementation "com.google.guava:guava:${guavaVersion}-jre"
testImplementation "junit:junit:${junitVersion}" testImplementation "junit:junit:${junitVersion}"
testImplementation "org.json:json:20211205" testImplementation "org.json:json:20220320"
testImplementation 'org.robolectric:robolectric:4.7.3' testImplementation 'org.robolectric:robolectric:4.7.3'
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:1.1.5' coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:1.1.5'

View file

@ -129,7 +129,7 @@ public class AuthyImporter extends DatabaseImporter {
} }
private JSONArray readFile(SuFile file, String key) throws IOException, XmlPullParserException { private JSONArray readFile(SuFile file, String key) throws IOException, XmlPullParserException {
try (SuFileInputStream inStream = new SuFileInputStream(file)) { try (InputStream inStream = SuFileInputStream.open(file)) {
XmlPullParser parser = Xml.newPullParser(); XmlPullParser parser = Xml.newPullParser();
parser.setFeature(XmlPullParser.FEATURE_PROCESS_NAMESPACES, false); parser.setFeature(XmlPullParser.FEATURE_PROCESS_NAMESPACES, false);
parser.setInput(inStream, null); parser.setInput(inStream, null);

View file

@ -66,7 +66,7 @@ public abstract class DatabaseImporter {
public State readFromApp() throws PackageManager.NameNotFoundException, DatabaseImporterException { public State readFromApp() throws PackageManager.NameNotFoundException, DatabaseImporterException {
SuFile file = getAppPath(); SuFile file = getAppPath();
try (SuFileInputStream stream = new SuFileInputStream(file)) { try (InputStream stream = SuFileInputStream.open(file)) {
return read(stream, true); return read(stream, true);
} catch (IOException e) { } catch (IOException e) {
throw new DatabaseImporterException(e); throw new DatabaseImporterException(e);

View file

@ -1,5 +1,7 @@
package com.beemdevelopment.aegis.importers; package com.beemdevelopment.aegis.importers;
import static android.database.sqlite.SQLiteDatabase.OPEN_READONLY;
import android.annotation.SuppressLint; import android.annotation.SuppressLint;
import android.content.Context; import android.content.Context;
import android.database.Cursor; import android.database.Cursor;
@ -19,8 +21,6 @@ import java.lang.reflect.InvocationTargetException;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.List; import java.util.List;
import static android.database.sqlite.SQLiteDatabase.OPEN_READONLY;
public class SqlImporterHelper { public class SqlImporterHelper {
private Context _context; private Context _context;
@ -36,7 +36,7 @@ public class SqlImporterHelper {
for (SuFile file : SqlImporterHelper.findDatabaseFiles(path)) { for (SuFile file : SqlImporterHelper.findDatabaseFiles(path)) {
// create temporary copies of the database files so that SQLiteDatabase can open them // create temporary copies of the database files so that SQLiteDatabase can open them
File fileCopy = null; File fileCopy = null;
try (SuFileInputStream inStream = new SuFileInputStream(file)) { try (InputStream inStream = SuFileInputStream.open(file)) {
fileCopy = new File(dir, file.getName()); fileCopy = new File(dir, file.getName());
try (FileOutputStream out = new FileOutputStream(fileCopy)) { try (FileOutputStream out = new FileOutputStream(fileCopy)) {
IOUtils.copy(inStream, out); IOUtils.copy(inStream, out);

View file

@ -6,8 +6,8 @@ buildscript {
google() google()
} }
dependencies { dependencies {
classpath 'com.android.tools.build:gradle:7.0.4' classpath 'com.android.tools.build:gradle:7.1.3'
classpath 'com.google.dagger:hilt-android-gradle-plugin:2.38.1' classpath 'com.google.dagger:hilt-android-gradle-plugin:2.41'
classpath 'com.google.protobuf:protobuf-gradle-plugin:0.8.18' classpath 'com.google.protobuf:protobuf-gradle-plugin:0.8.18'
// NOTE: Do not place your application dependencies here; they belong // NOTE: Do not place your application dependencies here; they belong

View file

@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.0.2-all.zip distributionUrl=https\://services.gradle.org/distributions/gradle-7.2-all.zip