Xamarin やめて Flutter 試す。結構(いやかなり)よいんじゃないか。

GAE(Spring Boot) + Webアプリ(Vuetify) + モバイル(Android、iOS) + Firebaseで、アプリケーションのテンプレートを作成しようと少しずつ作業していたけのだが、Xamarin に Firebaseを統合するところではまって進まない。iOS環境の知識がないのもあるのだが、なかなかまとまった時間が取れない中、丸一日とかかけて進捗がないのはつらい。

  1. Google App Engine Java Standard + Spring Boot 環境構築
  2. Spring Bootのテンプレートエンジン Thymeleafを適用
  3. Spring BootにVue.jsを利用する
  4. Spring BootにVuetify導入からクロスドメインAjax通信
  5. Spring Boot+Vuetify GAEへデプロイ、動作確認
  6. Xamarin.FormsアプリをiOS用にビルド
  7. Xamarin.Forms ポップアップの表示と Http通信
  8. Spring Boot+Vuetify ファイルのアップロードとJSONで結果を返す
  9. Google Google Cloud Vision でOCR。VuetifyからSpringBoot経由で呼び出し
  10. Xamarin ファイル選択
  11. Xamarin ファイルのアップロード
  12. Vue Router を導入し画面遷移
  13. Firebaseでログイン機能

Xamarinなかなかハードルが高いと思っていたところで、Flutterがよさそうなので、試してみる。よさそうならXamarinやめてFlutterにする。

Flutter

Flutterは、Googleが開発しているAndroidやiOS用のネイティブアプリケーションをDart言語で開発できるフレームワーク。Webアプリも生成できるようになりそうだし、うまいこと行けば、これ一つで全部行ける。うまいこと行けばだけど。そんなうまい話があればうれしい。Write onece run anywhere. のコンセプトは20年たっても有効だ。

半額キャンペーンをやっていたので、購入して斜め読み。

イメージはつかめるが、発展途上の環境などはすぐに手順など変わるので、上記書籍の通りやればできると甘く考えないほうがよい。(結局いろいろはまりまくりました)

Dartの書籍も、Kindleで購入して斜めよみして大まかな感触をとらえる。まぁ今どきの言語はだいたいできることは同じだし、文法的にはほぼJavaっぽい。IDEが補完してくれて、ネットでリファレンスがみられるのでなんでもよい。インテリセンスがなくて、インターネットがないころは、書籍を手元において、文法を頭に叩き込むしかなかったけど。

Android Studio

Android Studio に Flutterプラグインを導入。Dart のSDKも合わせてインストールされる

flutter01

Flutterプロジェクトを作成する。

flutter02

flutter03

このまま起動すると、ボタンを押すと、カウンターがインクリメントされるデモアプリケーションが実行される。

Firebase

FlutterがGoogle謹製なので、Firebaseとの親和性に大いに期待。Xamarinでの不満は、Firebase関連のライブラリを使うのがややこやしいのもある。

ネットでも参考にFirebaseに、Android および iOSのアプリケーションを追加する。

https://firebase.google.com/docs/?authuser=1

https://console.firebase.google.com/u/0/

Firebaseのプロジェクトに、AndroidやiOSを追加するときに、ウィザード的に手順(どのファイルにどういうコードを追加する)が出るのだが、そこでまずひとはまり。

Firebase エラー

I/flutter ( 3823): PlatformException(sign_in_failed, com.google.android.gms.common.api.ApiException: 10: , null)

https://stackoverflow.com/questions/54557479/flutter-and-google-sign-in-plugin-platformexceptionsign-in-failed-com-google

手順通りに作業して、疎通用のコードを書いて、GoogleログインをFirebaseでしようと思うのだが、上記のエラー。さんざんStackoverflowなど参考に試すのだが、解決せず、、、

結局原因は、Flutter プラグインが想定する Firebaseのバージョン(ちと古い)と、Firebaseサイトの手順で出てくるバージョン(当然最新)が不一致だったことによる。プラグイン側に合わせて事なきを得る。

Firebase証明書

Firebase で認証のデバッグをするには、以下のコマンドで署名証明書の発行および登録が必要。

https://developers.google.com/android/guides/client-auth

リリース用

  1. keytool -exportcert -list -v \
  2. -alias <your-key-name> -keystore <path-to-production-keystore>

デバッグ用

Windows

  1. keytool -list -v \
  2. -alias androiddebugkey -keystore %USERPROFILE%\.android\debug.keystore

Mac/linux

  1. keytool -list -v \
  2. -alias androiddebugkey -keystore ~/.android/debug.keystore

iOS

https://flutter.dev/docs/get-started/install/macos

Flutter の iOS 手順は、上記を参照したのだが、おおはまりしたのが、

Deploy to iOS devices – Follow the Xcode signing flow to provision your project:

おそらくこの手順。ここまでの手順は必要

(flutter doctor で足りない内容の実施 メモ)

ios_error

まぁ、xcode自体触ったことがなく意味が分かっていないからなのだろうが、xcodeの画面からこの辺りを編集したためか、info.plist の内容が消えてしまっていたと思われる。(git diff を取ったら、Flutter プラグインで新規プロジェクトを作成したときに生成された内容が消えていた) いったん、git checkout . したうえで、手動で、CFBundleURLSchemes エントリを、元に戻したinfo.plist に転記。

あ、これは、以下のエラーが出たので追加

flutter: PlatformException(google_sign_in, Your app is missing support for the following URL schemes:

ちなみに、以下のようなエラーがつぶしてもつぶしても出てきて、Flutter、お前もか。。とあきらめかけていました。

Ensure that the application’s Info.plist contains a value for CFBundleIdentifier.

The bundle identifier of the application could not be determined. Ensure that the application’s Info.plist contains a value for CFBundleIdentifier.

とか

Runner.app has missing or invalid CFBundleExecutable in its Info.plist
Underlying error (domain=MIInstallerErrorDomain, code=11):
     Bundle at path

Source

最終的に、Firebaseを統合して、Android(実機) と iOS(シミュレータ)で動作確認を取ったソースコードをメモ。

アプリケーションレベル build.gradle

  1. buildscript {
  2. ext.kotlin_version = '1.2.71'
  3. repositories {
  4. google()
  5. jcenter()
  6. }
  7.  
  8. dependencies {
  9. classpath 'com.android.tools.build:gradle:3.2.1'
  10. classpath 'com.google.gms:google-services:3.2.1'
  11. classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
  12. }
  13. }
  14.  
  15. allprojects {
  16. repositories {
  17. google()
  18. jcenter()
  19. }
  20. }
  21.  
  22. rootProject.buildDir = '../build'
  23. subprojects {
  24. project.buildDir = "${rootProject.buildDir}/${project.name}"
  25. }
  26. subprojects {
  27. project.evaluationDependsOn(':app')
  28. }
  29.  
  30. task clean(type: Delete) {
  31. delete rootProject.buildDir
  32. }

プロジェクトレベルの build.gradle

  1. def localProperties = new Properties()
  2. def localPropertiesFile = rootProject.file('local.properties')
  3. if (localPropertiesFile.exists()) {
  4. localPropertiesFile.withReader('UTF-8') { reader ->
  5. localProperties.load(reader)
  6. }
  7. }
  8.  
  9. def flutterRoot = localProperties.getProperty('flutter.sdk')
  10. if (flutterRoot == null) {
  11. throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.")
  12. }
  13.  
  14. def flutterVersionCode = localProperties.getProperty('flutter.versionCode')
  15. if (flutterVersionCode == null) {
  16. flutterVersionCode = '1'
  17. }
  18.  
  19. def flutterVersionName = localProperties.getProperty('flutter.versionName')
  20. if (flutterVersionName == null) {
  21. flutterVersionName = '1.0'
  22. }
  23.  
  24. apply plugin: 'com.android.application'
  25. apply plugin: 'kotlin-android'
  26. apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
  27.  
  28. android {
  29. compileSdkVersion 27
  30.  
  31. sourceSets {
  32. main.java.srcDirs += 'src/main/kotlin'
  33. }
  34.  
  35. lintOptions {
  36. disable 'InvalidPackage'
  37. }
  38.  
  39. defaultConfig {
  40. // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
  41. applicationId "info.typea.favo_phrase"
  42. minSdkVersion 22
  43. targetSdkVersion 27
  44. versionCode flutterVersionCode.toInteger()
  45. versionName flutterVersionName
  46. testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  47. }
  48.  
  49. buildTypes {
  50. release {
  51. // TODO: Add your own signing config for the release build.
  52. // Signing with the debug keys for now, so `flutter run --release` works.
  53. signingConfig signingConfigs.debug
  54. }
  55. }
  56. }
  57.  
  58. flutter {
  59. source '../..'
  60. }
  61.  
  62. dependencies {
  63. implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
  64. implementation 'com.google.firebase:firebase-analytics:16.0.0'
  65. testImplementation 'junit:junit:4.12'
  66. androidTestImplementation 'com.android.support.test:runner:1.0.2'
  67. androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
  68. }
  69.  
  70. apply plugin: 'com.google.gms.google-services'

/lib/main.dart

Googleサインインを行うサンプル実装

ログイン、ログアウトボタンを配置し、処理を実装。ログインユーザーの表示名を画面に表示させる。

  1. import 'package:flutter/material.dart';
  2. import 'package:firebase_auth/firebase_auth.dart';
  3. import 'package:google_sign_in/google_sign_in.dart';
  4.  
  5.  
  6. final GoogleSignIn _googleSignIn = GoogleSignIn();
  7. final FirebaseAuth _auth = FirebaseAuth.instance;
  8.  
  9. void main() => runApp(MyApp());
  10.  
  11. class MyApp extends StatelessWidget {
  12. // This widget is the root of your application.
  13. @override
  14. Widget build(BuildContext context) {
  15. return MaterialApp(
  16. title: 'Flutter Demo',
  17. theme: ThemeData(
  18. // This is the theme of your application.
  19. //
  20. // Try running your application with "flutter run". You'll see the
  21. // application has a blue toolbar. Then, without quitting the app, try
  22. // changing the primarySwatch below to Colors.green and then invoke
  23. // "hot reload" (press "r" in the console where you ran "flutter run",
  24. // or simply save your changes to "hot reload" in a Flutter IDE).
  25. // Notice that the counter didn't reset back to zero; the application
  26. // is not restarted.
  27. primarySwatch: Colors.blue,
  28. ),
  29. home: MyHomePage(title: 'Flutter Demo Home Page'),
  30. );
  31. }
  32. }
  33.  
  34. class MyHomePage extends StatefulWidget {
  35. MyHomePage({Key key, this.title}) : super(key: key);
  36.  
  37. // This widget is the home page of your application. It is stateful, meaning
  38. // that it has a State object (defined below) that contains fields that affect
  39. // how it looks.
  40.  
  41. // This class is the configuration for the state. It holds the values (in this
  42. // case the title) provided by the parent (in this case the App widget) and
  43. // used by the build method of the State. Fields in a Widget subclass are
  44. // always marked "final".
  45.  
  46. final String title;
  47.  
  48. @override
  49. _MyHomePageState createState() => _MyHomePageState();
  50. }
  51.  
  52. class _MyHomePageState extends State<MyHomePage> {
  53. int _counter = 0;
  54. FirebaseUser _user = null;
  55. void _incrementCounter() {
  56. setState(() {
  57. // This call to setState tells the Flutter framework that something has
  58. // changed in this State, which causes it to rerun the build method below
  59. // so that the display can reflect the updated values. If we changed
  60. // _counter without calling setState(), then the build method would not be
  61. // called again, and so nothing would appear to happen.
  62. _counter++;
  63. });
  64. }
  65.  
  66. Future<FirebaseUser> _handleSignIn() async {
  67. GoogleSignInAccount googleUser = await _googleSignIn.signIn();
  68. GoogleSignInAuthentication googleAuth = await googleUser.authentication;
  69. FirebaseUser user = (await _auth.signInWithCredential(
  70. GoogleAuthProvider.getCredential(
  71. idToken: googleAuth.idToken,
  72. accessToken: googleAuth.accessToken)
  73. )).user;
  74. print("sign in ${_user?.displayName}");
  75.  
  76. return user;
  77. }
  78.  
  79. Future<void> _handleSignOut() async {
  80. await _auth.signOut();
  81. await _googleSignIn.signOut();
  82. return;
  83. }
  84.  
  85. @override
  86. Widget build(BuildContext context) {
  87. // This method is rerun every time setState is called, for instance as done
  88. // by the _incrementCounter method above.
  89. //
  90. // The Flutter framework has been optimized to make rerunning build methods
  91. // fast, so that you can just rebuild anything that needs updating rather
  92. // than having to individually change instances of widgets.
  93. return Scaffold(
  94. appBar: AppBar(
  95. // Here we take the value from the MyHomePage object that was created by
  96. // the App.build method, and use it to set our appbar title.
  97. title: Text(widget.title),
  98. ),
  99. body: Center(
  100. // Center is a layout widget. It takes a single child and positions it
  101. // in the middle of the parent.
  102. child: Column(
  103. // Column is also a layout widget. It takes a list of children and
  104. // arranges them vertically. By default, it sizes itself to fit its
  105. // children horizontally, and tries to be as tall as its parent.
  106. //
  107. // Invoke "debug painting" (press "p" in the console, choose the
  108. // "Toggle Debug Paint" action from the Flutter Inspector in Android
  109. // Studio, or the "Toggle Debug Paint" command in Visual Studio Code)
  110. // to see the wireframe for each widget.
  111. //
  112. // Column has various properties to control how it sizes itself and
  113. // how it positions its children. Here we use mainAxisAlignment to
  114. // center the children vertically; the main axis here is the vertical
  115. // axis because Columns are vertical (the cross axis would be
  116. // horizontal).
  117. mainAxisAlignment: MainAxisAlignment.center,
  118. children: <Widget>[
  119. Text(
  120. 'You have pushed the button this many times:',
  121. ),
  122. Text(
  123. '${_user?.displayName} $_counter',
  124. style: Theme.of(context).textTheme.display1,
  125. ),
  126. RaisedButton(
  127. onPressed: () {
  128. _handleSignIn()
  129. .then((user) {
  130. print(user);
  131. setState(() {
  132. _user = user;
  133. });
  134. }
  135. ).catchError(
  136. (e) => print(e)
  137. );
  138. },
  139. child: const Text(
  140. 'Login',
  141. ),
  142. ),
  143. RaisedButton(
  144. onPressed: (){
  145. _handleSignOut().then(
  146. (e){setState((){_user=null;});}
  147. );
  148. },
  149. child: const Text('Logout'),
  150. ),
  151. ],
  152. ),
  153. ),
  154. floatingActionButton: FloatingActionButton(
  155. onPressed: _incrementCounter,
  156. tooltip: 'Increment',
  157. child: Icon(Icons.add),
  158. ), // This trailing comma makes auto-formatting nicer for build methods.
  159. );
  160. }
  161. }

うーん。確かにアプリケーション起動までは、通常と同じく時間がかかるが、起動してしまった後のUIの修正は、ほぼ即時反映される。これは捗る。

Android実機で確認

起動時、ログインされていない状態。ユーザー=null

flutter_firebase_auth01

loginボタンを押すことで、Googleアカウント選択ダイアログが表示される。

flutter_firebase_auth02

ログインすると、ユーザー情報が取得されて、名前が表示される!!

いいね。

flutter_firebase_auth03

iOS

Android実機と同じことを、Mac上のAndroid Studioとシミュレーターで確認

$ open –a Simulator

でシミュレータを起動すると、Android Studioに表示されるので、実行

firebase1

login ボタンで同様に、Google ログインダイアログ表示。

firebase2

ログインすると、ユーザー情報取得されて、名前が表示された。

うーん。一週間ぐらいかかってしまったけど、いいんじゃないかな。

Android側で確認した内容が修正なしで、iOSで動いてくれるなら非常に捗る(予定)!

Follow me!

Xamarin やめて Flutter 試す。結構(いやかなり)よいんじゃないか。” に対して1件のコメントがあります。

  1. hiroto より:

    Firebase 証明書のくだり、デフォルトのパスワードは android

コメントを残す

メールアドレスが公開されることはありません。 * が付いている欄は必須項目です