mirror of
https://github.com/beemdevelopment/Aegis.git
synced 2025-06-10 16:39:40 +00:00
Update Gradle
This commit is contained in:
parent
3927ddec3e
commit
4198ca3bb7
5 changed files with 9 additions and 5 deletions
|
@ -21,6 +21,8 @@ def fileProviderAuthorityDebug = "${packageName}.debug.fileprovider"
|
||||||
android {
|
android {
|
||||||
compileSdkVersion 33
|
compileSdkVersion 33
|
||||||
|
|
||||||
|
namespace packageName
|
||||||
|
|
||||||
defaultConfig {
|
defaultConfig {
|
||||||
applicationId "${packageName}"
|
applicationId "${packageName}"
|
||||||
minSdkVersion 21
|
minSdkVersion 21
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
xmlns:tools="http://schemas.android.com/tools"
|
xmlns:tools="http://schemas.android.com/tools">
|
||||||
package="com.beemdevelopment.aegis">
|
|
||||||
|
|
||||||
<uses-permission android:name="android.permission.CAMERA" />
|
<uses-permission android:name="android.permission.CAMERA" />
|
||||||
<uses-permission android:name="android.permission.USE_BIOMETRIC" />
|
<uses-permission android:name="android.permission.USE_BIOMETRIC" />
|
||||||
|
@ -25,7 +24,8 @@
|
||||||
android:label="Aegis"
|
android:label="Aegis"
|
||||||
android:supportsRtl="true"
|
android:supportsRtl="true"
|
||||||
android:theme="@style/Theme.Aegis.Launch"
|
android:theme="@style/Theme.Aegis.Launch"
|
||||||
tools:replace="android:theme">
|
tools:replace="android:theme"
|
||||||
|
tools:targetApi="s">
|
||||||
<activity android:name=".ui.TransferEntriesActivity"
|
<activity android:name=".ui.TransferEntriesActivity"
|
||||||
android:label="@string/title_activity_transfer" />
|
android:label="@string/title_activity_transfer" />
|
||||||
<activity
|
<activity
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
package com.beemdevelopment.aegis.ui.views;
|
package com.beemdevelopment.aegis.ui.views;
|
||||||
|
|
||||||
|
import android.annotation.SuppressLint;
|
||||||
import android.content.Context;
|
import android.content.Context;
|
||||||
import android.content.res.TypedArray;
|
import android.content.res.TypedArray;
|
||||||
import android.util.AttributeSet;
|
import android.util.AttributeSet;
|
||||||
|
@ -30,6 +31,7 @@ public class IconRecyclerView extends RecyclerView {
|
||||||
init(context, attrs);
|
init(context, attrs);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@SuppressLint("ResourceType")
|
||||||
private void init(Context context, AttributeSet attrs) {
|
private void init(Context context, AttributeSet attrs) {
|
||||||
if (attrs != null) {
|
if (attrs != null) {
|
||||||
int[] attrsArray = {
|
int[] attrsArray = {
|
||||||
|
|
|
@ -6,7 +6,7 @@ buildscript {
|
||||||
google()
|
google()
|
||||||
}
|
}
|
||||||
dependencies {
|
dependencies {
|
||||||
classpath 'com.android.tools.build:gradle:7.2.2'
|
classpath 'com.android.tools.build:gradle:7.3.0'
|
||||||
classpath 'com.google.dagger:hilt-android-gradle-plugin:2.44'
|
classpath 'com.google.dagger:hilt-android-gradle-plugin:2.44'
|
||||||
classpath 'com.google.protobuf:protobuf-gradle-plugin:0.8.19'
|
classpath 'com.google.protobuf:protobuf-gradle-plugin:0.8.19'
|
||||||
|
|
||||||
|
|
2
gradle/wrapper/gradle-wrapper.properties
vendored
2
gradle/wrapper/gradle-wrapper.properties
vendored
|
@ -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.3.3-all.zip
|
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-all.zip
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue