-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
129 additions
and
117 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
name: Build Example | ||
|
||
on: [ push, workflow_dispatch ] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
# Checkout repository | ||
- name: Checkout | ||
uses: actions/[email protected] | ||
|
||
# Setup JDK environment | ||
- name: Set up JDK | ||
uses: actions/[email protected] | ||
with: | ||
distribution: 'zulu' | ||
java-version: '17' | ||
|
||
# Run the Gradle Build task | ||
- name: Build Kts Example App | ||
run: ./gradlew clean :examplekts:assemble | ||
|
||
# Run the Gradle Build task | ||
- name: Build Groovy Example App | ||
run: ./gradlew clean :examplegroovy:assemble |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,8 +3,29 @@ GROUP=ch.ubique.gradle | |
ARTIFACT_ID=alpaka | ||
# VERSION will only be used if no property "githubRefName" is set (which the release workflow does) | ||
VERSION=0.0.0 | ||
DISPLAY_NAME=Ubique Alpaka | ||
DESCRIPTION=Adds tasks to apply flavor-specific icon overlays, inject build metadata into the Android manifest and upload the APK to the Ubique Alpaka backend | ||
WEBSITE=https://github.com/UbiqueInnovation/gradle-plugin-alpaka-android | ||
VCS_URL=https://github.com/UbiqueInnovation/gradle-plugin-alpaka-android | ||
IMPLEMENTATION_CLASS=ch.ubique.gradle.alpaka.AlpakaPlugin | ||
|
||
# POM metadata | ||
POM_NAME=alpaka | ||
POM_PACKAGING=jar | ||
POM_DESCRIPTION=Upload your app to the Alpaka App Distribution, label your launcher icon with some flavors, and have some build metadata in the BuildConfig and the Android manifest. | ||
POM_INCEPTION_YEAR=2024 | ||
|
||
# POM URLs | ||
POM_URL=https://github.com/UbiqueInnovation/gradle-plugin-alpaka-android | ||
POM_SCM_URL=https://github.com/UbiqueInnovation/gradle-plugin-alpaka-android | ||
POM_SCM_CONNECTION=scm:[email protected]:UbiqueInnovation/gradle-plugin-alpaka-android.git | ||
POM_SCM_DEV_CONNECTION=scm:[email protected]:UbiqueInnovation/gradle-plugin-alpaka-android.git | ||
|
||
# License information | ||
POM_LICENCE_NAME=License | ||
POM_LICENCE_URL=https://github.com/UbiqueInnovation/gradle-plugin-alpaka-android/blob/main/LICENSE | ||
POM_LICENCE_DIST=repo | ||
|
||
# Developer information | ||
POM_DEVELOPER_ID=UbiqueInnovation | ||
POM_DEVELOPER_NAME=Ubique Innovation | ||
POM_DEVELOPER_URL=https://www.ubique.ch/ | ||
|
||
# Sonatype metadata | ||
SONATYPE_STAGING_PROFILE=ch.ubique |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters