Skip to content

Commit

Permalink
Support API 34
Browse files Browse the repository at this point in the history
  • Loading branch information
kebekus committed Jul 25, 2024
1 parent c07bba6 commit 17d4daf
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 2 deletions.
7 changes: 7 additions & 0 deletions .classpath
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--Autogenerated by Qt Creator. Changes to this file will not be taken into account.-->
<classpath>
<classpathentry kind="src" path="build/Android_Qt_6_6_3_Clang_arm64_v8a-Debug/src/android/src"/>
<classpathentry kind="src" path="qtSrc"/>
<classpathentry kind="lib" path="/Users/kebekus/Software/buildsystems/AndroidSDK/platforms/android-34/android.jar"/>
</classpath>
15 changes: 15 additions & 0 deletions .project
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--Autogenerated by Qt Creator. Changes to this file will not be taken into account.-->
<projectDescription>
<name>enroute</name>
<natures>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
<linkedResources>
<link>
<name>qtSrc</name>
<type>2</type>
<location>/Users/kebekus/Software/buildsystems/Qt/6.6.3/android_arm64_v8a/src/android/java/src</location>
</link>
</linkedResources>
</projectDescription>
2 changes: 1 addition & 1 deletion src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ if(ANDROID)
qmaplibre_location_setup_plugins(${PROJECT_NAME})
set_target_properties(${PROJECT_NAME} PROPERTIES
QT_ANDROID_PACKAGE_SOURCE_DIR "${CMAKE_CURRENT_BINARY_DIR}/android"
QT_ANDROID_TARGET_SDK_VERSION 33
QT_ANDROID_TARGET_SDK_VERSION 34
QT_ANDROID_MIN_SDK_VERSION 26
)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ public void onCreate(Bundle savedInstanceState) {
m_notifyClickReceiver = new NotifyClickReceiver();
IntentFilter intentFilter = new IntentFilter();
intentFilter.addAction("de.akaflieg_freiburg.enroute.onNotificationClick");
m_instance.registerReceiver(m_notifyClickReceiver, intentFilter);
m_instance.registerReceiver(m_notifyClickReceiver, intentFilter, RECEIVER_EXPORTED);

// Be informed when the window size changes, and call the C++ method
// onWindowSizeChanged() whenever it changes. The window size changes
Expand Down

0 comments on commit 17d4daf

Please sign in to comment.