This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ +127 ms] executing: sysctl hw.optional.arm64 | |
[ +28 ms] Exit code 0 from: sysctl hw.optional.arm64 | |
[ +2 ms] hw.optional.arm64: 1 | |
[ +8 ms] executing: [/Users/ryan/Documents/flutter/] git -c log.showSignature=false log -n 1 --pretty=format:%H | |
[ +15 ms] Exit code 0 from: git -c log.showSignature=false log -n 1 --pretty=format:%H | |
[ ] 77d935af4db863f6abd0b9c31c7e6df2a13de57b | |
[ ] executing: [/Users/ryan/Documents/flutter/] git tag --points-at 77d935af4db863f6abd0b9c31c7e6df2a13de57b | |
[ +22 ms] Exit code 0 from: git tag --points-at 77d935af4db863f6abd0b9c31c7e6df2a13de57b | |
[ ] 2.8.1 | |
[ +11 ms] executing: [/Users/ryan/Documents/flutter/] git rev-parse --abbrev-ref --symbolic @{u} |
This file has been truncated, but you can view the full file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Using `flutter run --release` or just `flutter run` runs without error. However, using `flutter run --profile` gives an error. | |
## Steps to Reproduce | |
1. Execute `flutter run --profile`. The following error is given | |
```shell | |
% flutter run --profile | |
Launching lib/main.dart on iPhone 12 Pro in profile mode... | |
Automatically signing iOS for device deployment using specified development team in Xcode project: KPUPH2Q2AB |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'dart:io'; | |
import 'package:flutter/cupertino.dart'; | |
import 'package:flutter/material.dart'; | |
import 'package:flutter_test/flutter_test.dart'; | |
import 'package:example_flutter/utils/widget_utils.dart'; | |
void main() { | |
testWidgets('create image from widget', (WidgetTester tester) async { | |
final globalKey = GlobalKey(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ... | |
Request request = new Request.Builder() | |
.url(url) | |
.tag(TAG) | |
.build(); | |
// Cancel previous call(s) if they are running or queued | |
OkHttpUtils.cancelCallWithTag(client, TAG); | |
// New call |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.website.app; | |
import com.google.gson.TypeAdapter; | |
import com.google.gson.stream.JsonReader; | |
import com.google.gson.stream.JsonToken; | |
import com.google.gson.stream.JsonWriter; | |
import com.website.app.models.Monument; | |
import java.io.IOException; | |
import java.util.ArrayList; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//GridItem.xml | |
... | |
<ImageView | |
android:id="@+id/mapImageStarredGrid" | |
android:layout_width="match_parent" | |
android:layout_height="175dp" | |
android:adjustViewBounds="true" | |
android:scaleType="centerCrop" /> | |
... |