Skip to content

Commit

Permalink
Merge pull request #229 from Hyeonz1/main
Browse files Browse the repository at this point in the history
[AOS/SETTING] gitignore 파일 수정 및 debugKey 설정
  • Loading branch information
Hyeonz1 authored Jan 15, 2024
2 parents d797fb2 + a780e8d commit d27d57a
Show file tree
Hide file tree
Showing 5 changed files with 44 additions and 30 deletions.
13 changes: 13 additions & 0 deletions AOS/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,16 @@
.externalNativeBuild
.cxx
local.properties
gradle.properties

# Built application files
.apk
.ap
.aab

# Keystore file
.keystore

# Properties
/*/local.properties
/*/gradle.properties
17 changes: 17 additions & 0 deletions AOS/.idea/deploymentTargetDropDown.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 14 additions & 2 deletions AOS/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,13 @@ android {
compileSdk 33

signingConfigs {
releaseWithSignedKey {
debugKey {
keyAlias KEY_ALIAS_DEBUG
keyPassword KEY_PASSWORD_DEBUG
storeFile file(STORE_FILE_DEBUG)
storePassword STORE_PASSWORD_DEBUG
}
releaseKey {
keyAlias KEY_ALIAS
keyPassword KEY_PASSWORD
storeFile file(STORE_FILE)
Expand Down Expand Up @@ -46,10 +52,16 @@ android {
}

buildTypes {
debug {
applicationIdSuffix = ".debug"
signingConfig signingConfigs.debugKey
minifyEnabled false
debuggable true
}
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
signingConfig signingConfigs.releaseWithSignedKey
signingConfig signingConfigs.releaseKey
}
}
compileOptions {
Expand Down
4 changes: 0 additions & 4 deletions AOS/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,6 @@
android:theme="@style/Theme.Eeos"
tools:targetApi="31">

<meta-data
android:name="asset_statements"
android:resource="@string/asset_statements" />

<activity
android:name=".MainActivity"
android:exported="true"
Expand Down
24 changes: 0 additions & 24 deletions AOS/gradle.properties

This file was deleted.

0 comments on commit d27d57a

Please sign in to comment.