2
0
mirror of https://github.com/KDE/kdeconnect-android synced 2025-08-22 18:07:55 +00:00

Move version to build.gradle.kts

This commit is contained in:
Albert Vaca Cintora 2024-12-31 09:24:17 +01:00
parent 97806cf6b0
commit 3f120fbea8
No known key found for this signature in database
2 changed files with 4 additions and 4 deletions

View File

@ -7,9 +7,7 @@ SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted
--> -->
<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">
android:versionCode="13209"
android:versionName="1.32.9">
<uses-feature <uses-feature
android:name="android.hardware.telephony" android:name="android.hardware.telephony"

View File

@ -27,7 +27,6 @@ plugins {
} }
val licenseResDir = File("$projectDir/build/dependency-license-res") val licenseResDir = File("$projectDir/build/dependency-license-res")
val debugSuffix = "debug"
fun String.runCommand( fun String.runCommand(
workingDir: File = File("."), workingDir: File = File("."),
@ -51,8 +50,11 @@ android {
namespace = "org.kde.kdeconnect_tp" namespace = "org.kde.kdeconnect_tp"
compileSdk = 35 compileSdk = 35
defaultConfig { defaultConfig {
applicationId = "org.kde.kdeconnect_tp"
minSdk = 21 minSdk = 21
targetSdk = 35 targetSdk = 35
versionCode = 13209
versionName = "1.32.9"
proguardFiles(getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro") proguardFiles(getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro")
} }
buildFeatures { buildFeatures {