Skip to content

Commit dab984c

Browse files
committed
Добавлены шаблоны для Android. Ориентация теперь задана, как строго
портретная. Теперь окно контекстного меню открывается корректно.
1 parent e4cac41 commit dab984c

12 files changed

Lines changed: 538 additions & 17 deletions

File tree

Lab.pro

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ DEFINES += QT_DEPRECATED_WARNINGS
1616
SOURCES += \
1717
main.cpp
1818

19-
RESOURCES += qml2.qrc
19+
RESOURCES += qml.qrc
2020

2121
TRANSLATIONS += \
2222
Lab_ru_RU.ts
@@ -31,3 +31,16 @@ QML_DESIGNER_IMPORT_PATH =
3131
qnx: target.path = /tmp/$${TARGET}/bin
3232
else: unix:!android: target.path = /opt/$${TARGET}/bin
3333
!isEmpty(target.path): INSTALLS += target
34+
35+
ANDROID_ABIS = armeabi-v7a
36+
37+
DISTFILES += \
38+
android/AndroidManifest.xml \
39+
android/build.gradle \
40+
android/gradle/wrapper/gradle-wrapper.jar \
41+
android/gradle/wrapper/gradle-wrapper.properties \
42+
android/gradlew \
43+
android/gradlew.bat \
44+
android/res/values/libs.xml
45+
46+
ANDROID_PACKAGE_SOURCE_DIR = $$PWD/android

android/AndroidManifest.xml

Lines changed: 84 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
1+
<?xml version="1.0"?>
2+
<manifest package="org.qtproject.example" xmlns:android="http://schemas.android.com/apk/res/android" android:versionName="-- %%INSERT_VERSION_NAME%% --" android:versionCode="-- %%INSERT_VERSION_CODE%% --" android:installLocation="auto">
3+
<!-- The following comment will be replaced upon deployment with default permissions based on the dependencies of the application.
4+
Remove the comment if you do not require these default permissions. -->
5+
<!-- %%INSERT_PERMISSIONS -->
6+
7+
<!-- The following comment will be replaced upon deployment with default features based on the dependencies of the application.
8+
Remove the comment if you do not require these default features. -->
9+
<!-- %%INSERT_FEATURES -->
10+
11+
<supports-screens android:largeScreens="true" android:normalScreens="true" android:anyDensity="true" android:smallScreens="true"/>
12+
<application android:hardwareAccelerated="true" android:name="org.qtproject.qt5.android.bindings.QtApplication" android:label="-- %%INSERT_APP_NAME%% --" android:extractNativeLibs="true">
13+
<activity android:configChanges="orientation|uiMode|screenLayout|screenSize|smallestScreenSize|layoutDirection|locale|fontScale|keyboard|keyboardHidden|navigation|mcc|mnc|density" android:name="org.qtproject.qt5.android.bindings.QtActivity" android:label="-- %%INSERT_APP_NAME%% --" android:screenOrientation="portrait" android:launchMode="singleTop">
14+
<intent-filter>
15+
<action android:name="android.intent.action.MAIN"/>
16+
<category android:name="android.intent.category.LAUNCHER"/>
17+
</intent-filter>
18+
19+
<!-- Application arguments -->
20+
<!-- meta-data android:name="android.app.arguments" android:value="arg1 arg2 arg3"/ -->
21+
<!-- Application arguments -->
22+
23+
<meta-data android:name="android.app.lib_name" android:value="-- %%INSERT_APP_LIB_NAME%% --"/>
24+
<meta-data android:name="android.app.qt_sources_resource_id" android:resource="@array/qt_sources"/>
25+
<meta-data android:name="android.app.repository" android:value="default"/>
26+
<meta-data android:name="android.app.qt_libs_resource_id" android:resource="@array/qt_libs"/>
27+
<meta-data android:name="android.app.bundled_libs_resource_id" android:resource="@array/bundled_libs"/>
28+
<!-- Deploy Qt libs as part of package -->
29+
<meta-data android:name="android.app.bundle_local_qt_libs" android:value="-- %%BUNDLE_LOCAL_QT_LIBS%% --"/>
30+
31+
<!-- Run with local libs -->
32+
<meta-data android:name="android.app.use_local_qt_libs" android:value="-- %%USE_LOCAL_QT_LIBS%% --"/>
33+
<meta-data android:name="android.app.libs_prefix" android:value="/data/local/tmp/qt/"/>
34+
<meta-data android:name="android.app.load_local_libs_resource_id" android:resource="@array/load_local_libs"/>
35+
<meta-data android:name="android.app.load_local_jars" android:value="-- %%INSERT_LOCAL_JARS%% --"/>
36+
<meta-data android:name="android.app.static_init_classes" android:value="-- %%INSERT_INIT_CLASSES%% --"/>
37+
<!-- Used to specify custom system library path to run with local system libs -->
38+
<!-- <meta-data android:name="android.app.system_libs_prefix" android:value="/system/lib/"/> -->
39+
<!-- Messages maps -->
40+
<meta-data android:value="@string/ministro_not_found_msg" android:name="android.app.ministro_not_found_msg"/>
41+
<meta-data android:value="@string/ministro_needed_msg" android:name="android.app.ministro_needed_msg"/>
42+
<meta-data android:value="@string/fatal_error_msg" android:name="android.app.fatal_error_msg"/>
43+
<meta-data android:value="@string/unsupported_android_version" android:name="android.app.unsupported_android_version"/>
44+
<!-- Messages maps -->
45+
46+
<!-- Splash screen -->
47+
<!-- Orientation-specific (portrait/landscape) data is checked first. If not available for current orientation,
48+
then android.app.splash_screen_drawable. For best results, use together with splash_screen_sticky and
49+
use hideSplashScreen() with a fade-out animation from Qt Android Extras to hide the splash screen when you
50+
are done populating your window with content. -->
51+
<!-- meta-data android:name="android.app.splash_screen_drawable_portrait" android:resource="@drawable/logo_portrait" / -->
52+
<!-- meta-data android:name="android.app.splash_screen_drawable_landscape" android:resource="@drawable/logo_landscape" / -->
53+
<!-- meta-data android:name="android.app.splash_screen_drawable" android:resource="@drawable/logo"/ -->
54+
<!-- meta-data android:name="android.app.splash_screen_sticky" android:value="true"/ -->
55+
<!-- Splash screen -->
56+
57+
<!-- Background running -->
58+
<!-- Warning: changing this value to true may cause unexpected crashes if the
59+
application still try to draw after
60+
"applicationStateChanged(Qt::ApplicationSuspended)"
61+
signal is sent! -->
62+
<meta-data android:name="android.app.background_running" android:value="false"/>
63+
<!-- Background running -->
64+
65+
<!-- auto screen scale factor -->
66+
<meta-data android:name="android.app.auto_screen_scale_factor" android:value="false"/>
67+
<!-- auto screen scale factor -->
68+
69+
<!-- extract android style -->
70+
<!-- available android:values :
71+
* default - In most cases this will be the same as "full", but it can also be something else if needed, e.g., for compatibility reasons
72+
* full - useful QWidget & Quick Controls 1 apps
73+
* minimal - useful for Quick Controls 2 apps, it is much faster than "full"
74+
* none - useful for apps that don't use any of the above Qt modules
75+
-->
76+
<meta-data android:name="android.app.extract_android_style" android:value="default"/>
77+
<!-- extract android style -->
78+
</activity>
79+
80+
<!-- For adding service(s) please check: https://wiki.qt.io/AndroidServices -->
81+
82+
</application>
83+
84+
</manifest>

android/build.gradle

Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
buildscript {
2+
repositories {
3+
google()
4+
jcenter()
5+
}
6+
7+
dependencies {
8+
classpath 'com.android.tools.build:gradle:3.6.0'
9+
}
10+
}
11+
12+
repositories {
13+
google()
14+
jcenter()
15+
}
16+
17+
apply plugin: 'com.android.application'
18+
19+
dependencies {
20+
implementation fileTree(dir: 'libs', include: ['*.jar', '*.aar'])
21+
}
22+
23+
android {
24+
/*******************************************************
25+
* The following variables:
26+
* - androidBuildToolsVersion,
27+
* - androidCompileSdkVersion
28+
* - qt5AndroidDir - holds the path to qt android files
29+
* needed to build any Qt application
30+
* on Android.
31+
*
32+
* are defined in gradle.properties file. This file is
33+
* updated by QtCreator and androiddeployqt tools.
34+
* Changing them manually might break the compilation!
35+
*******************************************************/
36+
37+
compileSdkVersion androidCompileSdkVersion.toInteger()
38+
39+
buildToolsVersion '28.0.3'
40+
41+
sourceSets {
42+
main {
43+
manifest.srcFile 'AndroidManifest.xml'
44+
java.srcDirs = [qt5AndroidDir + '/src', 'src', 'java']
45+
aidl.srcDirs = [qt5AndroidDir + '/src', 'src', 'aidl']
46+
res.srcDirs = [qt5AndroidDir + '/res', 'res']
47+
resources.srcDirs = ['resources']
48+
renderscript.srcDirs = ['src']
49+
assets.srcDirs = ['assets']
50+
jniLibs.srcDirs = ['libs']
51+
}
52+
}
53+
54+
lintOptions {
55+
abortOnError false
56+
}
57+
58+
// Do not compress Qt binary resources file
59+
aaptOptions {
60+
noCompress 'rcc'
61+
}
62+
63+
defaultConfig {
64+
resConfig "en"
65+
minSdkVersion = qtMinSdkVersion
66+
targetSdkVersion = qtTargetSdkVersion
67+
}
68+
}
53.1 KB
Binary file not shown.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
distributionBase=GRADLE_USER_HOME
2+
distributionPath=wrapper/dists
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.4-bin.zip
4+
zipStoreBase=GRADLE_USER_HOME
5+
zipStorePath=wrapper/dists

android/gradlew

Lines changed: 172 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)