Skip to content

Commit 5b11faa

Browse files
committed
add
1 parent e0bd59d commit 5b11faa

6 files changed

Lines changed: 37 additions & 37 deletions

File tree

build.gradle

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,22 @@
1-
plugins {
2-
id 'com.android.application' version '8.3.0' apply false
1+
buildscript {
2+
repositories {
3+
google()
4+
mavenCentral()
5+
}
6+
dependencies {
7+
classpath 'com.android.tools.build:gradle:9.3.1'
8+
// NOTE: Do not place your application dependencies here; they belong
9+
// in the individual module build.gradle files
10+
}
11+
}
12+
13+
allprojects {
14+
repositories {
15+
google()
16+
mavenCentral()
17+
}
318
}
419

520
tasks.register("clean", Delete) {
621
delete rootProject.buildDir
7-
}
22+
}

gradle.properties

Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,9 @@
1+
android.usesSdkInManifest.disallowed=false
2+
android.sdk.defaultTargetSdkToCompileSdkIfUnset=false
13
android.enableR8.fullMode=true
2-
android.enableJetifier=true
3-
android.useAndroidX=true
4-
android.aapt2FromMavenOverride=/data/data/com.jahangir/files/usr/bin/aapt2
5-
6-
org.gradle.jvmargs=-Xmx1024m -XX:MaxMetaspaceSize=256m
7-
org.gradle.daemon=true
8-
org.gradle.parallel=false
9-
org.gradle.caching=true
10-
org.gradle.configureondemand=true
11-
12-
kotlin.incremental=true
4+
android.enableAppCompileTimeRClass=false
5+
android.builtInKotlin=false
6+
android.newDsl=false
7+
android.r8.optimizedResourceShrinking=false
8+
android.defaults.buildfeatures.resvalues=true
9+
android.enableJetifier=true

gradlew

Lines changed: 1 addition & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gradlew.bat

Lines changed: 1 addition & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

local.properties

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,8 @@
1-
sdk.dir=/data/data/com.jahangir/files/home/android-sdk
1+
## This file must *NOT* be checked into Version Control Systems,
2+
# as it contains information specific to your local configuration.
3+
#
4+
# Location of the SDK. This is only used by Gradle.
5+
# For customization when using a Version Control System, please read the
6+
# header note.
7+
#Tue Aug 18 22:08:24 GMT+08:00 2026
8+
sdk.dir=C\:\\Users\\only1\\AppData\\Local\\Android\\Sdk

settings.gradle

Lines changed: 1 addition & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1 @@
1-
pluginManagement {
2-
repositories {
3-
google()
4-
mavenCentral()
5-
gradlePluginPortal()
6-
}
7-
}
8-
dependencyResolutionManagement {
9-
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
10-
repositories {
11-
google()
12-
mavenCentral()
13-
}
14-
}
15-
rootProject.name = "Aurora"
16-
include ':app'
1+
include ':app'

0 commit comments

Comments
 (0)