Skip to content

Commit 43929c6

Browse files
committed
add: 임시 release signing key 이 설정됩니다
1 parent a5b81f7 commit 43929c6

22 files changed

Lines changed: 130 additions & 153 deletions

File tree

.idea/deploymentTargetSelector.xml

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
21.9 MB
Binary file not shown.
12.8 KB
Binary file not shown.
12.7 KB
Binary file not shown.
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
{
2+
"version": 3,
3+
"artifactType": {
4+
"type": "APK",
5+
"kind": "Directory"
6+
},
7+
"applicationId": "com.lanpet.app",
8+
"variantName": "prodRelease",
9+
"elements": [
10+
{
11+
"type": "SINGLE",
12+
"filters": [],
13+
"attributes": [],
14+
"versionCode": 1,
15+
"versionName": "1.0.0",
16+
"outputFile": "app-prod-release.apk"
17+
}
18+
],
19+
"elementType": "File",
20+
"baselineProfiles": [
21+
{
22+
"minApi": 28,
23+
"maxApi": 30,
24+
"baselineProfiles": [
25+
"baselineProfiles/1/app-prod-release.dm"
26+
]
27+
},
28+
{
29+
"minApi": 31,
30+
"maxApi": 2147483647,
31+
"baselineProfiles": [
32+
"baselineProfiles/0/app-prod-release.dm"
33+
]
34+
}
35+
],
36+
"minSdkVersionForDexing": 24
37+
}

app/src/main/java/com/lanpet/app/MainActivity.kt

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
package com.lanpet.app
22

3-
import android.animation.Animator
4-
import android.animation.AnimatorListenerAdapter
5-
import android.animation.ObjectAnimator
63
import android.annotation.SuppressLint
7-
import android.graphics.Color
84
import android.os.Bundle
95
import androidx.activity.ComponentActivity
106
import androidx.activity.compose.setContent

build-logic/convention/src/main/kotlin/AndroidApplicationBuildConventionPlugin.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ class AndroidApplicationBuildConventionPlugin : Plugin<Project> {
2323
getDefaultProguardFile("proguard-android-optimize.txt"),
2424
"proguard-rules.pro",
2525
)
26+
signingConfig = signingConfigs.getByName("release.key")
2627
}
2728
debug {
2829
isMinifyEnabled = false

build-logic/convention/src/main/kotlin/AndroidLibraryBuildConventionPlugin.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ class AndroidLibraryBuildConventionPlugin : Plugin<Project> {
2626
getDefaultProguardFile("proguard-android-optimize.txt"),
2727
"proguard-rules.pro",
2828
)
29+
signingConfig = signingConfigs.getByName("release.key")
2930
}
3031
debug {
3132
isMinifyEnabled = false

build-logic/convention/src/main/kotlin/utils/ConfigureExtensions.kt

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,13 @@ internal fun Project.configureAndroidCommon(commonExtension: CommonExtension<*,
3434
keyAlias = keyStoreProperties.get("debug.keyAlias") as String
3535
keyPassword = keyStoreProperties.get("debug.keyPassword") as String
3636
}
37+
38+
create("release.key") {
39+
storeFile = file(keyStoreProperties.get("debug.keystore") as String)
40+
storePassword = keyStoreProperties.get("debug.storePassword") as String
41+
keyAlias = keyStoreProperties.get("debug.keyAlias") as String
42+
keyPassword = keyStoreProperties.get("debug.keyPassword") as String
43+
}
3744
}
3845

3946
compileOptions {

core/auth/src/main/java/com/lanpet/core/auth/BasePreviewWrapper.kt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ import androidx.compose.runtime.Composable
55
import androidx.compose.runtime.CompositionLocalProvider
66
import androidx.compose.ui.Modifier
77
import androidx.compose.ui.platform.LocalContext
8-
import androidx.datastore.core.DataStore
98
import com.lanpet.core.designsystem.theme.LanPetAppTheme
109
import com.lanpet.core.manager.AuthStateHolder
1110
import com.lanpet.core.manager.CoilManager

0 commit comments

Comments
 (0)