前提・実現したいこと
Flutterでgeocoderを使って、緯度、経度から地名を取得したいのですが、
PC上のシミュレーターでは動くのですが、
実機(iphone6s)で動かそうとするとエラーになってしまいます。
ご教授お願い致します。
発生している問題・エラーメッセージ
Xcode build done. 24.5s Failed to build iOS app Error output from Xcode build: ↳ ** BUILD FAILED ** Xcode's output: ↳ /Users/tetetete/my_app2/ios/Runner/GeneratedPluginRegistrant.m:22:9: fatal error: module 'geocoder' not found @import geocoder; ~~~~~~~^~~~~~~~ 1 error generated. note: Using new build system note: Building targets in parallel note: Planning build note: Constructing build description Could not build the precompiled application for the device. It appears that your application still contains the default signing identifier. Try replacing 'com.example' with your signing id in Xcode: open ios/Runner.xcworkspace Error launching application on pc01 の iPhone.
該当のソースコード
ターミナルに地名がでる仕組みです。
Dart
1import 'package:flutter/material.dart'; 2import 'package:geocoder/geocoder.dart'; 3 4void main() => runApp(new MyApp()); 5void countDown() => runApp(new MyApp()); 6 7class MyApp extends StatelessWidget { 8 9 Widget build(BuildContext context) { 10 placeNm(); 11 return new MaterialApp( 12 title: 'Hello Wolrd', 13 home: new Scaffold( 14 body: new Center( 15 child: new Text('Hello World'), 16 ), 17 ), 18 ); 19 } 20 21 //地名を取得 22 void placeNm() async { 23 final coordinates = new Coordinates(35.646102, 139.710645); 24 var addresses = 25 await Geocoder.local.findAddressesFromCoordinates(coordinates); 26 var first = addresses.first; 27 print("${first.locality} : ${first.subLocality}"); 28 } 29} 30
pubspec.yml
dependencies: flutter: sdk: flutter firebase_core: ^0.3.0 cloud_firestore: ^0.9.5 geolocator: ^5.1.3 geocoder: ^0.2.1
試したこと
flutter pub getを打ってもダメでした。
補足情報(FW/ツールのバージョンなど)
Flutter 1.18.0-9.0.pre.73
Dart 2.9.0
xcode 11.5 beta
iphone6s
あなたの回答
tips
プレビュー