Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
feat(google-maps): use ios swift package manager config
  • Loading branch information
Copilot authored Apr 9, 2026
commit a6c4a9d2ad2c90fcc2ec1dd4a2953dbc2d2ea771
2 changes: 1 addition & 1 deletion packages/google-maps/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"extends": ["../../.eslintrc.json"],
"ignorePatterns": ["!**/*", "node_modules/**/*"],
"ignorePatterns": ["!**/*", "node_modules/**/*", "nativescript.config.ts"],
"overrides": [
{
"files": ["*.ts", "*.tsx", "*.js", "*.jsx"],
Expand Down
14 changes: 14 additions & 0 deletions packages/google-maps/nativescript.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import { NativeScriptConfig } from '@nativescript/core';

export default {
ios: {
SPMPackages: [
{
name: 'GoogleMaps',
libs: ['GoogleMaps'],
version: '10.12.0',
repositoryURL: 'https://github.com/googlemaps/ios-maps-sdk.git',
},
],
},
} as NativeScriptConfig;
2 changes: 0 additions & 2 deletions packages/google-maps/platforms/ios/Podfile

This file was deleted.

1 change: 1 addition & 0 deletions packages/google-maps/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
"packages/google-maps/*.md",
"packages/google-maps/index.d.ts",
"packages/google-maps/utils/index.d.ts",
"packages/google-maps/nativescript.config.ts",
"LICENSE",
{
"glob": "**/*",
Expand Down
14 changes: 7 additions & 7 deletions packages/google-maps/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"outDir": "../../dist/out-tsc",
"rootDir": "."
},
"exclude": ["**/*.spec.ts", "angular", "src-native"],
"include": ["**/*.ts", "references.d.ts"]
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"outDir": "../../dist/out-tsc",
"rootDir": "."
},
"exclude": ["**/*.spec.ts", "angular", "nativescript.config.ts", "src-native"],
"include": ["**/*.ts", "references.d.ts"]
}
Loading