Skip to content

Commit 4a66ba1

Browse files
authored
refactor: move maplibre_ios outside of maplibre package (#403)
some tasks from #401 - [x] move maplibre_ios and example package outside of maplibre package - [x] create minimal example for maplibre package
1 parent 153e8da commit 4a66ba1

File tree

379 files changed

+766
-699
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

379 files changed

+766
-699
lines changed

.github/ISSUE_TEMPLATE/1-bug.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ body:
77
attributes:
88
label: Platforms
99
description: On what platforms does the bug happen?
10-
placeholder:
1110
options: [ "Please Select", "Android", "iOS", "Web", "MacOS", "Windows", "Linux", "All" ]
1211
validations:
1312
required: true

.github/codecov.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ comment:
77

88
ignore:
99
- "**/*.g.dart"
10-
- "lib/src/platform/android/jni/**"
10+
- "maplibre/lib/src/platform/android/jni/**"
1111
- "example/**"
1212
- "maplibre_ios/**"
1313

.github/workflows/ci.yml

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,9 @@ jobs:
8282
matrix:
8383
sdk: [ '' ] # option to use a matrix test with the lower supported flutter version
8484
timeout-minutes: 30
85+
defaults:
86+
run:
87+
working-directory: maplibre
8588
steps:
8689
- uses: actions/checkout@v5
8790
- name: "Setup Flutter SDK"
@@ -165,6 +168,9 @@ jobs:
165168
score:
166169
name: "Package score"
167170
runs-on: ubuntu-latest
171+
defaults:
172+
run:
173+
working-directory: maplibre
168174
steps:
169175
- name: Checkout project
170176
uses: actions/checkout@v5
@@ -286,10 +292,11 @@ jobs:
286292
with:
287293
cache: true
288294
- name: "Get Flutter dependencies"
289-
working-directory: example
290295
run: dart pub get
291296
- name: Run pigeon
292-
run: ./pigeons/run_code_gen.sh
297+
run: sh ./pigeons/run_code_gen.sh
298+
- name: Format code
299+
run: dart format .
293300
- name: Check changes
294301
run: |
295302
if [[ -n "$(git status --porcelain)" ]]; then
@@ -313,15 +320,15 @@ jobs:
313320
distribution: 'temurin'
314321
cache: 'gradle'
315322
- name: "Get Flutter dependencies"
316-
working-directory: example
317323
run: dart pub get
318324
- name: Build example APK
319325
working-directory: example
320326
run: flutter build apk
321327
- name: Run jnigen
322-
run: ./run_jnigen.sh
328+
working-directory: maplibre
329+
run: sh ./run_jnigen.sh
323330
- name: Format code
324-
run: dart format lib/src/platform/android/jni
331+
run: dart format maplibre/lib/src/platform/android/jni
325332
- name: Check changes
326333
run: |
327334
if [[ -n "$(git status --porcelain)" ]]; then

.pubignore

Lines changed: 0 additions & 3 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 0 additions & 317 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
maplibre/CHANGELOG.md

0 commit comments

Comments
 (0)