-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #66 from paulnagle/library_updates_feb_2023
Library updates feb 2023
- Loading branch information
Showing
11 changed files
with
5,915 additions
and
5,461 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,32 @@ | ||
name: Build Debug Android | ||
|
||
on: [push] | ||
|
||
jobs: | ||
build: | ||
name: Build Debug APK | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout source | ||
uses: actions/checkout@v2 | ||
|
||
- name: Setup java | ||
uses: actions/setup-java@v3 | ||
with: | ||
distribution: 'temurin' | ||
java-version: '11' | ||
|
||
- name: Setup Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 16.x | ||
|
||
- name: Build for android | ||
run: ./build.sh -a | ||
|
||
- name: Upload dev APK | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: app-dev | ||
path: platforms/android/app/build/outputs/apk/debug/app-debug.apk | ||
|
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,46 @@ | ||
name: Build Release Android | ||
|
||
on: | ||
release: | ||
types: [published] | ||
|
||
jobs: | ||
build: | ||
name: Build Release AAB | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout source | ||
uses: actions/checkout@v2 | ||
|
||
- name: Setup java | ||
uses: actions/setup-java@v3 | ||
with: | ||
distribution: 'temurin' | ||
java-version: '11' | ||
|
||
- name: Setup Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 19.x | ||
|
||
- name: Build Script for android | ||
run: ./build.sh -r | ||
|
||
- uses: r0adkll/sign-android-release@v1 | ||
name: Sign Android app AAB | ||
id: sign_app | ||
with: | ||
releaseDirectory: platforms/android/app/build/outputs/bundle/release | ||
signingKeyBase64: ${{ secrets.NAIRELAND_KEYSTORE }} | ||
alias: alias_name | ||
keyStorePassword: ${{ secrets.NAIRELAND_KEYSTORE_PASSWORD }} | ||
keyPassword: ${{ secrets.NAIRELAND_KEYSTORE_PASSWORD }} | ||
env: | ||
# override default build-tools version (29.0.3) -- optional | ||
BUILD_TOOLS_VERSION: "30.0.3" | ||
|
||
- name: Upload release bundle | ||
uses: actions/upload-artifact@v1 | ||
with: | ||
name: app-release | ||
path: platforms/android/app/build/outputs/bundle/release/app-release.aab |
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
<?xml version='1.0' encoding='utf-8'?> | ||
<widget android-packageName="ie.nasouth.android.naireland" ios-CFBundleIdentifier="ie.nasouth.apple" version="777760201" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0"> | ||
<widget android-packageName="ie.nasouth.android.naireland" ios-CFBundleIdentifier="ie.nasouth.apple" version="77776.3.0" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0"> | ||
<name>NA Ireland</name> | ||
<description>NA Ireland</description> | ||
<author email="[email protected]" href="https://www.na-ireland.org/">NA Ireland</author> | ||
|
@@ -20,7 +20,6 @@ | |
<preference name="SplashScreenDelay" value="3000" /> | ||
<preference name="android-targetSdkVersion" value="32" /> | ||
<preference name="android-compileSdkVersion" value="32" /> | ||
<preference name="StatusBarOverlaysWebView" value="false" /> | ||
<preference name="GOOGLE_MAPS_ANDROID_API_KEY" value="AIzaSyDwPqrrBYFrtCIJ0IUL81tiIVwYJqUMKCw" /> | ||
<preference name="GOOGLE_MAPS_IOS_API_KEY" value="AIzaSyA7ddO5YUH8xukCrGiabEjZdPmm3HmPG-0" /> | ||
<platform name="android"> | ||
|
@@ -60,6 +59,7 @@ | |
<splash density="port-xhdpi" src="resources/android/splash/drawable-port-xhdpi-screen.png" /> | ||
<splash density="port-xxhdpi" src="resources/android/splash/drawable-port-xxhdpi-screen.png" /> | ||
<splash density="port-xxxhdpi" src="resources/android/splash/drawable-port-xxxhdpi-screen.png" /> | ||
<preference name="StatusBarOverlaysWebView" value="false" /> | ||
</platform> | ||
<platform name="ios"> | ||
<allow-intent href="itms:*" /> | ||
|
@@ -123,6 +123,7 @@ | |
<edit-config file="*-Info.plist" mode="merge" target="NSLocationAlwaysAndWhenInUseUsageDescription"> | ||
<string>We use your location to determine your distance from NA meetings.</string> | ||
</edit-config> | ||
<preference name="StatusBarOverlaysWebView" value="true" /> | ||
</platform> | ||
<plugin name="cordova-plugin-device" spec="2.0.2" /> | ||
<plugin name="cordova-plugin-ionic-keyboard" spec="^2.0.5" /> | ||
|
Oops, something went wrong.