-
Notifications
You must be signed in to change notification settings - Fork 1.9k
customizability #1869
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
customizability #1869
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -663,6 +663,24 @@ def parse_args(args=None): | |
'https://developer.android.com/guide/' | ||
'topics/manifest/' | ||
'activity-element.html')) | ||
|
||
ap.add_argument('--android-entrypoint', dest='android_entrypoint', | ||
default='org.kivy.android.PythonActivity', | ||
help='Defines which java class will be used for startup, usually a subclass of PythonActivity') | ||
ap.add_argument('--android-apptheme', dest='android_apptheme', | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As with the android entrypoint, this seems okay (albeit even more niche), it's a very simple option and there's no simple alternative. |
||
default='@android:style/Theme.NoTitleBar', | ||
help='Defines which app theme should be selected for the main activity') | ||
ap.add_argument('--add-compile-option', dest='compile_options', default=[], | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. --add-compile-options <- typo? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. no, its no typo, its a parameter thats adds a single option to a list of options (action='append') |
||
action='append', help='add compile options to gradle.build') | ||
ap.add_argument('--add-gradle-repository', dest='gradle_repositories', | ||
default=[], | ||
action='append', | ||
help='Ddd a repository for gradle') | ||
ap.add_argument('--add-packaging-option', dest='packaging_options', | ||
default=[], | ||
action='append', | ||
help='Dndroid packaging options') | ||
|
||
ap.add_argument('--wakelock', dest='wakelock', action='store_true', | ||
help=('Indicate if the application needs the device ' | ||
'to stay on')) | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,68 +13,82 @@ allprojects { | |
repositories { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The changes here are much more minimal than I thought at first glance, due to the indentation changes. |
||
google() | ||
jcenter() | ||
flatDir { | ||
dirs 'libs' | ||
} | ||
{%- for repo in args.gradle_repositories %} | ||
{{repo}} | ||
{%- endfor %} | ||
flatDir { | ||
dirs 'libs' | ||
} | ||
} | ||
} | ||
|
||
apply plugin: 'com.android.application' | ||
|
||
android { | ||
compileSdkVersion {{ android_api }} | ||
buildToolsVersion '{{ build_tools_version }}' | ||
defaultConfig { | ||
minSdkVersion {{ args.min_sdk_version }} | ||
targetSdkVersion {{ android_api }} | ||
versionCode {{ args.numeric_version }} | ||
versionName '{{ args.version }}' | ||
} | ||
compileSdkVersion {{ android_api }} | ||
buildToolsVersion '{{ build_tools_version }}' | ||
defaultConfig { | ||
minSdkVersion {{ args.min_sdk_version }} | ||
targetSdkVersion {{ android_api }} | ||
versionCode {{ args.numeric_version }} | ||
versionName '{{ args.version }}' | ||
} | ||
|
||
{% if args.sign -%} | ||
signingConfigs { | ||
release { | ||
storeFile file(System.getenv("P4A_RELEASE_KEYSTORE")) | ||
keyAlias System.getenv("P4A_RELEASE_KEYALIAS") | ||
storePassword System.getenv("P4A_RELEASE_KEYSTORE_PASSWD") | ||
keyPassword System.getenv("P4A_RELEASE_KEYALIAS_PASSWD") | ||
} | ||
} | ||
{% if args.sign -%} | ||
signingConfigs { | ||
release { | ||
storeFile file(System.getenv("P4A_RELEASE_KEYSTORE")) | ||
keyAlias System.getenv("P4A_RELEASE_KEYALIAS") | ||
storePassword System.getenv("P4A_RELEASE_KEYSTORE_PASSWD") | ||
keyPassword System.getenv("P4A_RELEASE_KEYALIAS_PASSWD") | ||
} | ||
} | ||
{%- endif %} | ||
|
||
buildTypes { | ||
debug { | ||
} | ||
release { | ||
{% if args.sign -%} | ||
signingConfig signingConfigs.release | ||
{%- endif %} | ||
} | ||
} | ||
{% if args.packaging_options -%} | ||
packagingOptions { | ||
{%- for option in args.packaging_options %} | ||
{{option}} | ||
{%- endfor %} | ||
} | ||
{%- endif %} | ||
|
||
buildTypes { | ||
debug { | ||
} | ||
release { | ||
{% if args.sign -%} | ||
signingConfig signingConfigs.release | ||
{%- endif %} | ||
} | ||
} | ||
|
||
compileOptions { | ||
sourceCompatibility JavaVersion.VERSION_1_7 | ||
targetCompatibility JavaVersion.VERSION_1_7 | ||
{%- for option in args.compile_options %} | ||
{{option}} | ||
{%- endfor %} | ||
} | ||
|
||
sourceSets { | ||
main { | ||
jniLibs.srcDir 'libs' | ||
} | ||
} | ||
} | ||
|
||
} | ||
|
||
dependencies { | ||
{%- for aar in aars %} | ||
compile(name: '{{ aar }}', ext: 'aar') | ||
{%- endfor -%} | ||
{%- for jar in jars %} | ||
compile files('src/main/libs/{{ jar }}') | ||
{%- endfor -%} | ||
{%- if args.depends -%} | ||
{%- for depend in args.depends %} | ||
compile '{{ depend }}' | ||
{%- endfor %} | ||
{%- endif %} | ||
{%- for aar in aars %} | ||
compile(name: '{{ aar }}', ext: 'aar') | ||
{%- endfor -%} | ||
{%- for jar in jars %} | ||
compile files('src/main/libs/{{ jar }}') | ||
{%- endfor -%} | ||
{%- if args.depends -%} | ||
{%- for depend in args.depends %} | ||
compile '{{ depend }}' | ||
{%- endfor %} | ||
{%- endif %} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -54,7 +54,7 @@ | |
<application android:label="@string/app_name" | ||
android:icon="@drawable/icon" | ||
android:allowBackup="{{ args.allow_backup }}" | ||
android:theme="@android:style/Theme.NoTitleBar{% if not args.window %}.Fullscreen{% endif %}" | ||
android:theme="{{args.android_apptheme}}{% if not args.window %}.Fullscreen{% endif %}" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Mildly awkward here that only the sdl2 AndroidManifest is changed - I guess this should be implemented in every bootstrap? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. i did that now also for the other bootstraps |
||
android:hardwareAccelerated="true" > | ||
{% for l in args.android_used_libs %} | ||
<uses-library android:name="{{ l }}" /> | ||
|
@@ -64,7 +64,7 @@ | |
<meta-data android:name="{{ m.split('=', 1)[0] }}" android:value="{{ m.split('=', 1)[-1] }}"/>{% endfor %} | ||
<meta-data android:name="wakelock" android:value="{% if args.wakelock %}1{% else %}0{% endif %}"/> | ||
|
||
<activity android:name="org.kivy.android.PythonActivity" | ||
<activity android:name="{{args.android_entrypoint}}" | ||
android:label="@string/app_name" | ||
android:configChanges="mcc|mnc|locale|touchscreen|keyboard|keyboardHidden|navigation|orientation|screenLayout|fontScale|uiMode{% if args.min_sdk_version >= 8 %}|uiMode{% endif %}{% if args.min_sdk_version >= 13 %}|screenSize|smallestScreenSize{% endif %}{% if args.min_sdk_version >= 17 %}|layoutDirection{% endif %}{% if args.min_sdk_version >= 24 %}|density{% endif %}" | ||
android:screenOrientation="{{ args.orientation }}" | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This one seems fine, I don't think we could support the same thing any other way with such a simple api.
Minor: I'd probably pull out the 'org.kivy.android.PythonActivity' to a constant declaration somewhere.