Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
8 changes: 4 additions & 4 deletions melos.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -67,11 +67,11 @@ scripts:

# ANALYTICS
build:examples:ios:amplify_analytics_pinpoint: >
melos exec -c 1 --scope="amplify_analytics_pinpoint_example" --fail-fast -- \
melos exec -c 1 --scope="amplify_analytics_pinpoint_ios_example" --fail-fast -- \
flutter build ios --simulator

build:examples:android:amplify_analytics_pinpoint: >
melos exec -c 1 --scope="amplify_analytics_pinpoint_example" --fail-fast -- \
melos exec -c 1 --scope="amplify_analytics_pinpoint_android_example" --fail-fast -- \
flutter build apk --debug --verbose

lint:android:amplify_analytics_pinpoint:
Expand All @@ -82,7 +82,7 @@ scripts:
Lints Android (Kotlin) files against global rules and fails if there are any errors.
select-package:
scope:
- amplify_analytics_pinpoint_example
- amplify_analytics_pinpoint_android_example

lint:ios:amplify_analytics_pinpoint:
run: |
Expand All @@ -94,7 +94,7 @@ scripts:
select-package:
dir-exists: ios
scope:
- amplify_analytics_pinpoint_example
- amplify_analytics_pinpoint_ios_example

# API
build:examples:ios:amplify_api: >
Expand Down
7 changes: 0 additions & 7 deletions packages/amplify_analytics_pinpoint/.gitignore

This file was deleted.

42 changes: 0 additions & 42 deletions packages/amplify_analytics_pinpoint/ios/dependencies.rb

This file was deleted.

2 changes: 1 addition & 1 deletion packages/amplify_flutter/example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ dependencies:

dev_dependencies:
amplify_analytics_pinpoint:
path: ../../amplify_analytics_pinpoint
path: ../../analytics/amplify_analytics_pinpoint
amplify_api:
path: ../../amplify_api
amplify_auth_cognito:
Expand Down
80 changes: 80 additions & 0 deletions packages/analytics/amplify_analytics_pinpoint/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
# See https://dart.dev/guides/libraries/private-files

# Miscellaneous
*.class
*.log
*.pyc
*.swp
.DS_Store
.atom/
.buildlog/
.history
.svn/

# IntelliJ related
*.iml
*.ipr
*.iws
.idea/

# The .vscode folder contains launch configuration and tasks you configure in
# VS Code which you may wish to be included in version control, so this line
# is commented out by default.
#.vscode/

# Flutter/Dart/Pub related
**/doc/api/
.dart_tool/
.flutter-plugins
.flutter-plugins-dependencies
.packages
.pub-cache/
.pub/
build/

# Code coverage
coverage/

# Android related
**/android/**/gradle-wrapper.jar
**/android/.gradle
**/android/captures/
**/android/gradlew
**/android/gradlew.bat
**/android/local.properties
**/android/**/GeneratedPluginRegistrant.java

# iOS/XCode related
**/ios/**/*.mode1v3
**/ios/**/*.mode2v3
**/ios/**/*.moved-aside
**/ios/**/*.pbxuser
**/ios/**/*.perspectivev3
**/ios/**/*sync/
**/ios/**/.sconsign.dblite
**/ios/**/.tags*
**/ios/**/.vagrant/
**/ios/**/DerivedData/
**/ios/**/Icon?
**/ios/**/Pods/
**/ios/**/.symlinks/
**/ios/**/profile
**/ios/**/xcuserdata
**/ios/.generated/
**/ios/Flutter/App.framework
**/ios/Flutter/Flutter.framework
**/ios/Flutter/Flutter.podspec
**/ios/Flutter/Generated.xcconfig
**/ios/Flutter/app.flx
**/ios/Flutter/app.zip
**/ios/Flutter/flutter_assets/
**/ios/Flutter/flutter_export_environment.sh
**/ios/ServiceDefinitions.json
**/ios/Runner/GeneratedPluginRegistrant.*

# Exceptions to above rules.
!**/ios/**/default.mode1v3
!**/ios/**/default.mode2v3
!**/ios/**/default.pbxuser
!**/ios/**/default.perspectivev3
!/packages/flutter_tools/test/data/dart_dependencies_test/**/.packages
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ amplify/.config/local-*
amplify/logs
amplify/mock-data
amplify/backend/amplify-meta.json
amplify/backend/awscloudformation
amplify/backend/.temp
build/
dist/
Expand All @@ -64,4 +63,5 @@ amplify-build-config.json
amplify-gradle-config.json
amplifytools.xcconfig
.secret-*
**.sample
#amplify-do-not-edit-end

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
load '../../ios/dependencies.rb'

# Uncomment this line to define a global platform for your project
platform :ios, '13.0'

Expand Down Expand Up @@ -28,7 +26,6 @@ end
require File.expand_path(File.join('packages', 'flutter_tools', 'bin', 'podhelper'), flutter_root)

flutter_ios_podfile_setup
include_build_tools!

target 'Runner' do
use_frameworks!
Expand Down
Loading