Skip to content

Commit

Permalink
Merge pull request #29 from MONEYMONG/release/release
Browse files Browse the repository at this point in the history
Release/release
  • Loading branch information
eunseo0105 authored Aug 20, 2024
2 parents 58fdc01 + 177c4d4 commit e525636
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,6 @@ keystore.properties

# Keystore Files
*.jks
*.keystore
*.keystore

*.json
4 changes: 2 additions & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ android {
applicationId = "com.moneymong.moneymong"
minSdk = 24
targetSdk = 34
versionCode = 13
versionName = "1.1.0"
versionCode = 15
versionName = "1.2.0"

testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
vectorDrawables {
Expand Down
8 changes: 3 additions & 5 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,10 @@ platform :android do
version_code: options[:new_version_code]
)

git_add(
path: ["./app/build.gradle.kts"]
)
git_commit(
path: ["./app/build.gradle.kts"],
message: "INCREMENT VERSION CODE"
message: "INCREMENT VERSION CODE",
allow_nothing_to_commit: true
)

push_to_git_remote
Expand Down Expand Up @@ -97,7 +95,7 @@ platform :android do
gradle(
task: 'clean assemble',
flavor: "tb",
build_type: 'Release'
build_type: 'Debug'
)
firebase_app_distribution(
service_credentials_file: "#{ENV["FIREBASE_CREDENTIALS"]}",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@ fun SignUpTitleView(modifier: Modifier = Modifier, subTitleState: Boolean) {
horizontalAlignment = Alignment.Start
) {
Text(
text = "회원가입을 진행해주세요",
text = "대학정보를 알려주세요!",
style = Heading2,
color = Black
)
Text(
modifier = Modifier.padding(top= 8.dp),
text = "아래 항목들을 정확히 채워주세요",
text = "학교 이름과 학년을 선택해주세요.",
style = Body3,
color = if (!subTitleState) Gray06.copy(alpha = 0.4f) else Gray06

Expand Down

0 comments on commit e525636

Please sign in to comment.