Skip to content

Commit

Permalink
bump aap-lv2 to 0.3.0 and update everything to make it work.
Browse files Browse the repository at this point in the history
  • Loading branch information
atsushieno committed Nov 19, 2023
1 parent 53509e8 commit 531091c
Show file tree
Hide file tree
Showing 6 changed files with 435 additions and 402 deletions.
20 changes: 13 additions & 7 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {

android {
namespace 'org.androidaudioplugin.ports.lv2.guitarix'
compileSdk = 33
compileSdk = 34

defaultConfig {
applicationId "org.androidaudioplugin.ports.lv2.guitarix"
Expand Down Expand Up @@ -47,14 +47,20 @@ android {
}

dependencies {
implementation libs.aap.core
implementation libs.aap.lv2
implementation libs.aap.ui.compose
implementation libs.aap.ui.web
// FIXME: the project structure should not be like this, but the buggy build system results in
// this inconsistency: https://github.com/atsushieno/aap-core/issues/172#issuecomment-1716034775
//implementation libs.aap.lv2
//implementation libs.aap.core
//implementation libs.aap.ui.compose.app
//implementation libs.aap.ui.web
implementation project(":androidaudioplugin-lv2")
implementation project(":androidaudioplugin")
implementation project(":androidaudioplugin-ui-compose-app")
implementation project(":androidaudioplugin-ui-web")

androidTestImplementation project(":androidaudioplugin-testing")

testImplementation libs.junit
//androidTestImplementation libs.aap.core
androidTestImplementation libs.aap.testing
androidTestImplementation libs.test.core
androidTestImplementation libs.test.rules
androidTestImplementation libs.test.runner
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name="org.androidaudioplugin.ui.compose.PluginListActivity" android:exported="true">
<activity android:name="org.androidaudioplugin.ui.compose.app.PluginManagerActivity" android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

Expand Down
Loading

0 comments on commit 531091c

Please sign in to comment.