Skip to content

Commit

Permalink
Increment version to v0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
toasterofbread committed Jul 12, 2023
1 parent f9c1a4d commit bd8fa26
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
5 changes: 3 additions & 2 deletions androidApp/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -57,11 +57,12 @@ android {
compileSdk = (findProperty("android.compileSdk") as String).toInt()

defaultConfig {
versionCode = 3
versionName = getString("version_string")

applicationId = "com.toasterofbread.spmp"
minSdk = (findProperty("android.minSdk") as String).toInt()
targetSdk = (findProperty("android.targetSdk") as String).toInt()
versionCode = 2
versionName = getString("version_string")

testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
vectorDrawables.useSupportLibrary = true
Expand Down
11 changes: 5 additions & 6 deletions shared/src/commonMain/resources/assets/values/strings.xml
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
<resources>
<string name="version_string" translatable="false">0.1.1</string>

<string name="app_name" translatable="false">SpMp</string>
<string name="app_name_debug" translatable="false">SpMp (debug)</string>
<string name="version_string" translatable="false">0.1.0</string>
<string name="project_url" translatable="false">https://github.com/toasterofbread/spmp</string>
<string name="yt_i_api_key" translatable="false">AIzaSyAOghZGza2MQSZkY_zfZ370N-PUdXEo8AI</string>

<string name="project_url" translatable="false">https://github.com/toasterofbread/spmp</string>
<string name="project_url_name">project URL</string>

<string name="home_feed_listen_again">Listen again</string>
Expand Down Expand Up @@ -127,10 +128,6 @@
<string name="media_pause">Pause</string>
<string name="media_play">Play</string>

<string name="now_playing_player">Player</string>
<string name="now_playing_queue">Queue</string>
<string name="now_playing_related">Related</string>

<string name="player_service_name">Player Service</string>
<string name="download_service_name">Download Service</string>
<string name="download_service_error_name">Download Service errors</string>
Expand Down Expand Up @@ -185,6 +182,8 @@
<string name="lpm_info_queue_index">Queue index: $index</string>
<string name="lpm_info_id">ID: $id</string>

<string name="song_related_group_other">Other</string>

<string name="multiselect_x_items_selected">$x items selected</string>
<string name="multiselect_begin">Begin multiple selection</string>
<string name="multiselect_end">End multiple selection</string>
Expand Down

0 comments on commit bd8fa26

Please sign in to comment.