Skip to content

Commit

Permalink
Merge pull request #57 from paulnagle/version_5
Browse files Browse the repository at this point in the history
Initial android build
  • Loading branch information
paulnagle authored Jan 1, 2024
2 parents 93f70ae + 8258839 commit e1b15c8
Show file tree
Hide file tree
Showing 13 changed files with 31 additions and 25 deletions.
4 changes: 2 additions & 2 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
apply plugin: 'com.android.application'

android {
namespace "io.ionic.starter"
namespace "ie.nasouth.bmltsearch"
compileSdkVersion rootProject.ext.compileSdkVersion
defaultConfig {
applicationId "io.ionic.starter"
applicationId "ie.nasouth.bmltsearch"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 1
Expand Down
6 changes: 6 additions & 0 deletions android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,15 @@
android:grantUriPermissions="true">
<meta-data android:name="android.support.FILE_PROVIDER_PATHS" android:resource="@xml/file_paths" />
</provider>
<meta-data
android:name="com.google.android.geo.API_KEY"
android:value="AIzaSyAtwUjsIB14f0aHgdLk_JYnUrI0jvczMXw"/>
</application>

<!-- Permissions -->

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-feature android:name="android.hardware.location.gps" />
</manifest>
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package io.ionic.starter;
package ie.nasouth.bmltsearch;

import com.getcapacitor.BridgeActivity;

Expand Down
8 changes: 4 additions & 4 deletions android/app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version='1.0' encoding='utf-8'?>
<resources>
<string name="app_name">BMLTSearch</string>
<string name="title_activity_main">BMLTSearch</string>
<string name="package_name">io.ionic.starter</string>
<string name="custom_url_scheme">io.ionic.starter</string>
<string name="app_name">BMLT Search</string>
<string name="title_activity_main">BMLT Search</string>
<string name="package_name">ie.nasouth.bmltsearch</string>
<string name="custom_url_scheme">ie.nasouth.bmltsearch</string>
</resources>
28 changes: 14 additions & 14 deletions ios/App/App/Assets.xcassets/Splash.imageset/Contents.json
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
{
"images" : [
"images": [
{
"filename" : "Default@1x~universal~anyany.png",
"idiom" : "universal",
"scale" : "1x"
"filename": "Default@1x~universal~anyany.png",
"idiom": "universal",
"scale": "1x"
},
{
"filename" : "Default@2x~universal~anyany.png",
"idiom" : "universal",
"scale" : "2x"
"filename": "Default@2x~universal~anyany.png",
"idiom": "universal",
"scale": "2x"
},
{
"filename" : "Default@3x~universal~anyany.png",
"idiom" : "universal",
"scale" : "3x"
"filename": "Default@3x~universal~anyany.png",
"idiom": "universal",
"scale": "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
"info": {
"author": "xcode",
"version": 1
}
}
}
8 changes: 4 additions & 4 deletions ios/App/BMLT Search.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -373,14 +373,14 @@
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 5.1.4;
CURRENT_PROJECT_VERSION = 5.1.5;
DEVELOPMENT_TEAM = T3V4RRZHWV;
INFOPLIST_FILE = App/Info.plist;
INFOPLIST_KEY_CFBundleDisplayName = "BMLT Search";
INFOPLIST_KEY_LSApplicationCategoryType = "public.app-category.utilities";
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
MARKETING_VERSION = 5.1.4;
MARKETING_VERSION = 5.1.5;
OTHER_SWIFT_FLAGS = "$(inherited) \"-D\" \"COCOAPODS\" \"-DDEBUG\"";
PRODUCT_BUNDLE_IDENTIFIER = ie.nasouth.bmltsearch;
PRODUCT_NAME = "$(TARGET_NAME)";
Expand All @@ -398,14 +398,14 @@
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 5.1.4;
CURRENT_PROJECT_VERSION = 5.1.5;
DEVELOPMENT_TEAM = T3V4RRZHWV;
INFOPLIST_FILE = App/Info.plist;
INFOPLIST_KEY_CFBundleDisplayName = "BMLT Search";
INFOPLIST_KEY_LSApplicationCategoryType = "public.app-category.utilities";
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
MARKETING_VERSION = 5.1.4;
MARKETING_VERSION = 5.1.5;
PRODUCT_BUNDLE_IDENTIFIER = ie.nasouth.bmltsearch;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
Expand Down
Binary file removed src/assets/icons/icon-128.webp
Binary file not shown.
Binary file removed src/assets/icons/icon-192.webp
Binary file not shown.
Binary file removed src/assets/icons/icon-256.webp
Binary file not shown.
Binary file removed src/assets/icons/icon-48.webp
Binary file not shown.
Binary file removed src/assets/icons/icon-512.webp
Binary file not shown.
Binary file removed src/assets/icons/icon-72.webp
Binary file not shown.
Binary file removed src/assets/icons/icon-96.webp
Binary file not shown.

0 comments on commit e1b15c8

Please sign in to comment.