Update project
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Michel Roux 2022-10-26 14:28:05 +02:00
parent caf8e90acf
commit 0372c20d48
5 changed files with 26 additions and 29 deletions

1
.gitignore vendored
View File

@ -8,4 +8,3 @@
.externalNativeBuild
.cxx
local.properties
*.jks

View File

@ -4,7 +4,6 @@ plugins {
android {
compileSdkVersion 32
buildToolsVersion "30.0.3"
namespace "net.crystalyx.setaswallpaper"
defaultConfig {

View File

@ -1,28 +1,5 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
mavenCentral()
}
dependencies {
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
}
plugins {
id 'com.android.application' version '7.3.1' apply false
id 'com.android.library' version '7.3.1' apply false
}
allprojects {
repositories {
google()
mavenCentral()
}
tasks.withType(JavaCompile) {
options.deprecation = true
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}

View File

@ -10,4 +10,12 @@ org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8
# When configured, Gradle will run in incubating parallel mode.
# This option should only be used with decoupled projects. More details, visit
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
# org.gradle.parallel=true
# org.gradle.parallel=true
# AndroidX package structure to make it clearer which packages are bundled with the
# Android operating system, and which are packaged with your app's APK
# https://developer.android.com/topic/libraries/support-library/androidx-rn
android.useAndroidX=true
# Enables namespacing of each library's R class so that its R class includes only the
# resources declared in the library itself and none from the library's dependencies,
# thereby reducing the size of the R class for that library
android.nonTransitiveRClass=true

View File

@ -1,2 +1,16 @@
pluginManagement {
repositories {
gradlePluginPortal()
google()
mavenCentral()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
}
}
rootProject.name = "SetAsWallpaper"
include ':app'