Skip to content

Commit

Permalink
Merge pull request #100 from LeoAndo/release-v1.1.0
Browse files Browse the repository at this point in the history
Release v1.1.0
  • Loading branch information
LeoAndo authored Mar 11, 2023
2 parents 860d585 + 9bdda9c commit bea0615
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 6 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ name: Android CI
on:
push:
pull_request:
workflow_dispatch:

jobs:
build:
Expand Down
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,7 @@ Native Androidで作るGithubリポジトリ検索アプリになります。<br
- 動作OSバージョン: OS10.0以上

# アプリ開発時の準備 (重要)
秘匿情報の管理を`local.properties`で行っています。<br>
[fine-grained personal access token作成手順](https://docs.github.com/ja/authentication/keeping-your-account-and-data-secure/creating-a-personal-access-token#fine-grained-personal-access-token-%E3%81%AE%E4%BD%9C%E6%88%90) に沿ってaccess tokenを作成し、以下の11行目の通り設定値を追加してください。
<img src= "https://user-images.githubusercontent.com/16476224/208823985-4d0fa8ec-ef81-48de-94e7-8552728e304a.png" />
[Wiki](https://github.com/LeoAndo/AndroidGithubSearch/wiki/setup)にまとめています

# デザイン面:アピールポイント
- Themed Iconの適用
Expand Down
16 changes: 13 additions & 3 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ android {
applicationId "com.leoleo.androidgithubsearch"
minSdk 29
targetSdk 33
versionCode 109
versionName "1.0.9"
versionCode 110
versionName "1.1.0"

testInstrumentationRunner "com.leoleo.androidgithubsearch.CustomTestRunner"
vectorDrawables {
Expand All @@ -40,7 +40,17 @@ android {
buildTypes {
debug { signingConfig signingConfigs.debug }
release {
signingConfig signingConfigs.release
// ローカル環境では署名なしのrelease ビルドも可能とする
if (rootProject.file('release.keystore').exists() &&
localProperties['ANDROID_STORE_PASSWORD'] != null &&
localProperties['ANDROID_KEY_ALIAS'] != null &&
localProperties['ANDROID_KEY_PASSWORD'] != null
) {
logger.warn("Use signingConfigs.release")
signingConfig signingConfigs.release
} else {
logger.warn("Not Use signingConfigs.release")
}
minifyEnabled true
shrinkResources true
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
Expand Down

0 comments on commit bea0615

Please sign in to comment.