Skip to content

Commit

Permalink
Update targetSdkVersion to 34
Browse files Browse the repository at this point in the history
  • Loading branch information
kshoji committed Mar 11, 2024
1 parent bfabd85 commit c1ef11f
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 6 deletions.
5 changes: 4 additions & 1 deletion MIDIDriver/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ repositories {

dependencies {
api 'jp.kshoji:javax-sound-midi:0.0.4:@aar'
api 'androidx.annotation:annotation:1.4.0'
api 'androidx.annotation:annotation:1.7.1'
compileOnly project(':UnityPlayerMock')
api fileTree(dir: 'libs', include: '*.jar')
}
Expand All @@ -22,8 +22,11 @@ android {

defaultConfig {
minSdkVersion 12
targetSdkVersion 34
}

namespace "jp.kshoji.driver.midi"

sourceSets {
main {
manifest.srcFile 'AndroidManifest.xml'
Expand Down
3 changes: 3 additions & 0 deletions MIDIDriverSample/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" >
<activity
android:exported="true"
android:name=".MIDIDriverSingleSampleActivity"
android:label="@string/app_name_single"
android:launchMode="singleTask" >
Expand All @@ -19,6 +20,7 @@
</intent-filter>
</activity>
<activity
android:exported="true"
android:name=".MIDIDriverMultipleSampleActivity"
android:label="@string/app_name_multiple"
android:launchMode="singleTask" >
Expand All @@ -28,6 +30,7 @@
</intent-filter>
</activity>
<activity
android:exported="true"
android:name=".UsbMidiDriverSampleActivity"
android:label="@string/app_name_driver"
android:launchMode="singleTask" >
Expand Down
3 changes: 3 additions & 0 deletions MIDIDriverSample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,11 @@ android {

defaultConfig {
minSdkVersion 12
targetSdkVersion 34
}

namespace "jp.kshoji.driver.midi.sample"

sourceSets {
main {
manifest.srcFile 'AndroidManifest.xml'
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ buildscript {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.4.2'
classpath 'com.android.tools.build:gradle:8.3.0'
}
}

Expand Down
1 change: 0 additions & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
android.useAndroidX=true
android.enableJetifier=true
android.disableAutomaticComponentCreation=true
org.gradle.jvmargs=-Xmx4096m -XX:MaxMetaspaceSize=512m
org.gradle.caching = true
org.gradle.parallel = true
Expand Down
6 changes: 3 additions & 3 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Thu May 27 14:39:14 JST 2021
#Mon Mar 11 05:36:39 GMT+09:00 2024
distributionBase=GRADLE_USER_HOME
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-bin.zip
distributionPath=wrapper/dists
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

0 comments on commit c1ef11f

Please sign in to comment.