Display user location on map

This commit is contained in:
2022-09-01 13:48:33 -04:00
parent a8e802ffab
commit 17350d798d
5 changed files with 107 additions and 1 deletions

View File

@@ -47,8 +47,9 @@ android {
applicationId "edu.furman.now"
// You can update the following values to match your application needs.
// For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-build-configuration.
minSdkVersion flutter.minSdkVersion
minSdkVersion 23
targetSdkVersion flutter.targetSdkVersion
compileSdkVersion 33
versionCode flutterVersionCode.toInteger()
versionName flutterVersionName
}

View File

@@ -34,4 +34,5 @@
<!-- Permissions -->
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
</manifest>