2023-08-01, 09:53 PM
Hello,
i wanted to clone the github repo of the Android TV Client and build an APK out of it.
Gradle Sync and Gradle Build are running fine, deploying the debug build to AVD also works.
When building an APK it gives me the following error:
jellyfin-androidtv\app\build\intermediates\incremental\debugAndroidTest\mergeDebugAndroidTestResources\merged.dir\values\values.xml:4 looks as follows:
The file res/values/strings/strings.xml contains the app_name_debug string:
Has anyone also had this issue?
I am not able to find the issue.
Thank you!
i wanted to clone the github repo of the Android TV Client and build an APK out of it.
Gradle Sync and Gradle Build are running fine, deploying the debug build to AVD also works.
When building an APK it gives me the following error:
Code:
...\debugAndroidTest\mergeDebugAndroidTestResources\merged.dir\values\values.xml:4: AAPT: error: resource string/app_name_debug (aka org.jellyfin.androidtv.debug.test:string/app_name_debug) not found.
jellyfin-androidtv\app\build\intermediates\incremental\debugAndroidTest\mergeDebugAndroidTestResources\merged.dir\values\values.xml:4 looks as follows:
Code:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_id" translatable="false">org.jellyfin.androidtv.debug</string>
<string name="app_name" translatable="false">@string/app_name_debug</string>
<string name="app_search_suggest_authority" translatable="false">org.jellyfin.androidtv.debug.content</string>
<string name="app_search_suggest_intent_data" translatable="false">content://org.jellyfin.androidtv.debug.content/intent</string>
</resources>
The file res/values/strings/strings.xml contains the app_name_debug string:
Code:
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools" tools:ignore="MissingTranslation">
<string name="app_name_release" translatable="false" tools:ignore="UnusedResources">Jellyfin</string>
<string name="app_name_debug" translatable="false" tools:ignore="UnusedResources">Jellyfin Debug</string>
Has anyone also had this issue?
I am not able to find the issue.
Thank you!