diff options
-rw-r--r-- | src/plugins/android/Android.pluginspec.in | 2 | ||||
-rw-r--r-- | src/plugins/android/android.pro | 5 |
2 files changed, 4 insertions, 3 deletions
diff --git a/src/plugins/android/Android.pluginspec.in b/src/plugins/android/Android.pluginspec.in index 94083f5766..7ac3cb97c8 100644 --- a/src/plugins/android/Android.pluginspec.in +++ b/src/plugins/android/Android.pluginspec.in @@ -1,4 +1,4 @@ -<plugin name=\"Android\" version=\"$$QTCREATOR_VERSION\" compatVersion=\"$$QTCREATOR_VERSION\"> +<plugin name=\"Android\" version=\"$$QTCREATOR_VERSION\" compatVersion=\"$$QTCREATOR_VERSION\" experimental=\"$$ANDROID_EXPERIMENTAL_STR\> <vendor>KDE Necessitas</vendor> <copyright>(C) 2010-2012 BogDan Vatra</copyright> <license> diff --git a/src/plugins/android/android.pro b/src/plugins/android/android.pro index d7168d8746..c841fdbae0 100644 --- a/src/plugins/android/android.pro +++ b/src/plugins/android/android.pro @@ -4,6 +4,9 @@ TARGET = Android include(../../qtcreatorplugin.pri) include(android_dependencies.pri) +isEmpty(ANDROID_ENABLE):ANDROID_EXPERIMENTAL_STR="true" +else:ANDROID_EXPERIMENTAL_STR="false" + QT += xml network HEADERS += \ @@ -73,5 +76,3 @@ FORMS += \ RESOURCES = android.qrc DEFINES += QT_NO_CAST_TO_ASCII DEFINES += ANDROID_LIBRARY - - |