refactor: ♻️ rename app to app like setaswallpaper
Some checks failed
apk / build (push) Has been cancelled
@ -7,15 +7,15 @@ jobs:
|
|||||||
container: mingc/android-build-box
|
container: mingc/android-build-box
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- run: curl -sSL -u "$USERNAME:$PASSWORD" -o ShareWithTitle/$STORE_FILE https://cloud.crystalyx.net/remote.php/dav/files/$USERNAME/Bordel/$STORE_FILE
|
- run: curl -sSL -u "$USERNAME:$PASSWORD" -o app/$STORE_FILE https://cloud.crystalyx.net/remote.php/dav/files/$USERNAME/Bordel/$STORE_FILE
|
||||||
- run: sh gradlew lint build bundle assemble --no-daemon
|
- run: sh gradlew lint build bundle assemble --no-daemon --warning-mode all
|
||||||
- uses: akkuman/gitea-release-action@v1
|
- uses: akkuman/gitea-release-action@v1
|
||||||
if: gitea.ref_type == 'tag'
|
if: gitea.ref_type == 'tag'
|
||||||
with:
|
with:
|
||||||
files: |
|
files: |
|
||||||
ShareWithTitle/build/outputs/apk/debug/ShareWithTitle-debug.apk
|
app/build/outputs/apk/debug/app-debug.apk
|
||||||
ShareWithTitle/build/outputs/apk/release/ShareWithTitle-release.apk
|
app/build/outputs/apk/release/app-release.apk
|
||||||
ShareWithTitle/build/outputs/bundle/release/ShareWithTitle-release.aab
|
app/build/outputs/bundle/release/app-release.aab
|
||||||
env:
|
env:
|
||||||
USERNAME: ${{ secrets.USERNAME }}
|
USERNAME: ${{ secrets.USERNAME }}
|
||||||
PASSWORD: ${{ secrets.PASSWORD }}
|
PASSWORD: ${{ secrets.PASSWORD }}
|
||||||
|
2
.gitignore
vendored
@ -2,4 +2,4 @@
|
|||||||
.DS_Store
|
.DS_Store
|
||||||
build/
|
build/
|
||||||
local.properties
|
local.properties
|
||||||
.idea
|
.idea/
|
||||||
|
@ -1,10 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<module version="4">
|
|
||||||
<component name="FacetManager">
|
|
||||||
<facet type="android-gradle" name="Android-Gradle">
|
|
||||||
<configuration>
|
|
||||||
<option name="GRADLE_PROJECT_PATH" value=":" />
|
|
||||||
</configuration>
|
|
||||||
</facet>
|
|
||||||
</component>
|
|
||||||
</module>
|
|
@ -4,19 +4,19 @@ android {
|
|||||||
namespace 'net.crystalyx.sharewithtitle'
|
namespace 'net.crystalyx.sharewithtitle'
|
||||||
compileSdk 34
|
compileSdk 34
|
||||||
defaultConfig {
|
defaultConfig {
|
||||||
applicationId "net.crystalyx.sharewithtitle"
|
applicationId = "net.crystalyx.sharewithtitle"
|
||||||
minSdkVersion 11
|
minSdkVersion = 11
|
||||||
targetSdkVersion 34
|
targetSdkVersion = 34
|
||||||
versionCode 9
|
versionCode = 9
|
||||||
versionName "1.7"
|
versionName = "1.7"
|
||||||
}
|
}
|
||||||
signingConfigs {
|
signingConfigs {
|
||||||
release {
|
release {
|
||||||
if (System.env.STORE_FILE) {
|
if (System.env.STORE_FILE) {
|
||||||
storeFile file(System.env.STORE_FILE)
|
storeFile = file(System.env.STORE_FILE)
|
||||||
storePassword System.env.STORE_PASSWORD
|
storePassword = System.env.STORE_PASSWORD
|
||||||
keyAlias System.env.KEY_ALIAS
|
keyAlias = System.env.KEY_ALIAS
|
||||||
keyPassword System.env.KEY_PASSWORD
|
keyPassword = System.env.KEY_PASSWORD
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -26,10 +26,10 @@ android {
|
|||||||
}
|
}
|
||||||
buildTypes {
|
buildTypes {
|
||||||
release {
|
release {
|
||||||
minifyEnabled false
|
minifyEnabled = true
|
||||||
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
||||||
if (System.env.STORE_FILE) {
|
if (System.env.STORE_FILE) {
|
||||||
signingConfig signingConfigs.release
|
signingConfig = signingConfigs.release
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
Before Width: | Height: | Size: 46 KiB After Width: | Height: | Size: 46 KiB |
Before Width: | Height: | Size: 2.2 KiB After Width: | Height: | Size: 2.2 KiB |
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 2.6 KiB After Width: | Height: | Size: 2.6 KiB |
Before Width: | Height: | Size: 5.1 KiB After Width: | Height: | Size: 5.1 KiB |
Before Width: | Height: | Size: 4.4 KiB After Width: | Height: | Size: 4.4 KiB |
Before Width: | Height: | Size: 2.3 KiB After Width: | Height: | Size: 2.3 KiB |
Before Width: | Height: | Size: 6.0 KiB After Width: | Height: | Size: 6.0 KiB |
Before Width: | Height: | Size: 10 KiB After Width: | Height: | Size: 10 KiB |
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 16 KiB |
@ -4,7 +4,7 @@ buildscript {
|
|||||||
mavenCentral()
|
mavenCentral()
|
||||||
}
|
}
|
||||||
dependencies {
|
dependencies {
|
||||||
classpath("com.android.tools.build:gradle:8.8.0")
|
classpath('com.android.tools.build:gradle:8.8.0')
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
// Boilerplate from https://transang.me/create-a-minimal-android-boilerplate-from-scratch/
|
// Boilerplate from https://transang.me/create-a-minimal-android-boilerplate-from-scratch/
|
||||||
rootProject.name = 'ShareWithTitle'
|
rootProject.name = "ShareWithTitle"
|
||||||
include ':ShareWithTitle'
|
include ':app'
|
||||||
|