- AppDelegate: YMKMapKit до super, регистрация плагинов по шаблону Flutter 3.41 - Info.plist: YandexMapKitApiKey из $(YANDEX_MAPKIT_API_KEY) - Debug/Release/Profile.xcconfig: ключ, include Pods и опциональный Secrets - Podfile, workspace, pbxproj; .gitignore для Secrets.xcconfig, пример Secrets - ios/README.md
8 lines
115 B
Dart
8 lines
115 B
Dart
import 'package:flutter_test/flutter_test.dart';
|
|
|
|
void main() {
|
|
test('smoke', () {
|
|
expect(2 + 2, 4);
|
|
});
|
|
}
|