Skip to content

Commit dd81957

Browse files
authored
Merge pull request #85 from LeoAndo/release-v1.0.5
Release v1.0.5
2 parents 174564b + 94cbc3b commit dd81957

22 files changed

Lines changed: 256 additions & 137 deletions

File tree

.github/FUNDING.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# These are supported funding model platforms
2+
3+
github: LeoAndo # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
4+
#patreon: # Replace with a single Patreon username
5+
#open_collective: # Replace with a single Open Collective username
6+
#ko_fi: # Replace with a single Ko-fi username
7+
#tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
8+
#community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
9+
#liberapay: # Replace with a single Liberapay username
10+
#issuehunt: # Replace with a single IssueHunt username
11+
#otechie: # Replace with a single Otechie username
12+
#lfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry
13+
#custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ jobs:
1919

2020
- uses: actions/checkout@v3
2121

22-
- name: set up JDK 11
22+
- name: set up JDK 17
2323
uses: actions/setup-java@v3
2424
with:
25-
java-version: '11'
25+
java-version: '17'
2626
distribution: 'temurin'
2727

2828
# gradle cache

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ jobs:
1313
steps:
1414
- uses: actions/checkout@v3
1515

16-
- name: set up JDK 11
16+
- name: set up JDK 17
1717
uses: actions/setup-java@v3
1818
with:
19-
java-version: '11'
19+
java-version: '17'
2020
distribution: 'temurin'
2121
cache: gradle
2222

.idea/androidTestResultsUserPreferences.xml

Lines changed: 27 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/compiler.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/deploymentTargetDropDown.xml

Lines changed: 17 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/kotlinc.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,21 @@
22
Minimalist template for personal app development<br>
33

44
# env
5-
- IDE: Android Studio Electric Eel 2022.1.1
5+
- IDE
6+
```
7+
Android Studio Giraffe | 2022.3.1
8+
Build #AI-223.8836.35.2231.10406996, built on June 29, 2023
9+
Runtime version: 17.0.6+0-17.0.6b829.9-10027231 x86_64
10+
VM: OpenJDK 64-Bit Server VM by JetBrains s.r.o.
11+
macOS 13.4.1
12+
GC: G1 Young Generation, G1 Old Generation
13+
Memory: 1280M
14+
Cores: 16
15+
Metal Rendering is ON
16+
Registry:
17+
external.system.auto.import.disabled=true
18+
ide.text.editor.with.preview.show.floating.toolbar=false
19+
```
620
- Support OS version: 10.0 later
721

822
# setup

app/build.gradle

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ try {
1212
}
1313
android {
1414
namespace 'com.leoleo.androidapptemplate'
15-
compileSdk 33
15+
compileSdk 34
1616

1717
defaultConfig {
1818
applicationId "com.leoleo.androidapptemplate"
1919
minSdk 29
20-
targetSdk 33
20+
targetSdk 34
2121
versionCode 100
2222
versionName "1.0.0"
2323

@@ -57,19 +57,19 @@ android {
5757
}
5858
}
5959
compileOptions {
60-
sourceCompatibility JavaVersion.VERSION_11
61-
targetCompatibility JavaVersion.VERSION_11
60+
sourceCompatibility JavaVersion.VERSION_17
61+
targetCompatibility JavaVersion.VERSION_17
6262
}
6363
kotlinOptions {
64-
jvmTarget = '11'
64+
jvmTarget = '17'
6565
}
6666
buildFeatures {
6767
compose true
6868
}
6969
composeOptions {
7070
// Kotlin Versionとの互換性マップ
7171
// https://developer.android.com/jetpack/androidx/releases/compose-kotlin
72-
kotlinCompilerExtensionVersion '1.4.2'
72+
kotlinCompilerExtensionVersion '1.4.3'
7373
}
7474
packagingOptions {
7575
resources {
@@ -104,12 +104,12 @@ dependencies {
104104
implementation project(':data') // DIで必要
105105

106106
// compose Bomを利用
107-
def compose_version = platform('androidx.compose:compose-bom:2023.01.00')
107+
def compose_version = platform('androidx.compose:compose-bom:2023.06.01')
108108
implementation compose_version
109109
androidTestImplementation compose_version
110-
implementation 'androidx.core:core-ktx:1.9.0'
111-
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.5.1'
112-
implementation 'androidx.activity:activity-compose:1.6.1'
110+
implementation 'androidx.core:core-ktx:1.10.1'
111+
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.6.1'
112+
implementation 'androidx.activity:activity-compose:1.7.2'
113113
implementation 'androidx.compose.ui:ui'
114114
implementation 'androidx.compose.ui:ui-tooling-preview'
115115
implementation 'androidx.compose.material3:material3'
@@ -130,13 +130,13 @@ dependencies {
130130

131131
// Compose: Navigation
132132
implementation 'androidx.hilt:hilt-navigation-compose:1.0.0'
133-
implementation "androidx.navigation:navigation-compose:2.5.3"
133+
implementation "androidx.navigation:navigation-compose:2.6.0"
134134

135135
// Image
136-
implementation "io.coil-kt:coil-compose:2.2.2"
136+
implementation 'io.coil-kt:coil-compose:2.4.0'
137137

138138
// Paging
139-
implementation "androidx.paging:paging-compose:1.0.0-alpha18"
139+
implementation "androidx.paging:paging-compose:3.2.0"
140140

141141
// responsive UI for larger screens
142142
implementation 'androidx.compose.material3:material3-window-size-class'

0 commit comments

Comments
 (0)