mirror of
				https://github.com/KevinMidboe/immich.git
				synced 2025-10-29 17:40:28 +00:00 
			
		
		
		
	Add reverse geocoding and show asset location on map in detail view (#43)
* Added reserve geocoding, location in search suggestion, and search by location * Added mapbox sdk to app * Added mapbox to image detailed view
This commit is contained in:
		@@ -44,7 +44,7 @@ android {
 | 
			
		||||
    defaultConfig {
 | 
			
		||||
        // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
 | 
			
		||||
        applicationId "com.example.immich_mobile"
 | 
			
		||||
        minSdkVersion flutter.minSdkVersion
 | 
			
		||||
        minSdkVersion 20
 | 
			
		||||
        targetSdkVersion flutter.targetSdkVersion
 | 
			
		||||
        versionCode flutterVersionCode.toInteger()
 | 
			
		||||
        versionName flutterVersionName
 | 
			
		||||
 
 | 
			
		||||
@@ -1,39 +1,23 @@
 | 
			
		||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
 | 
			
		||||
          package="com.example.immich_mobile">
 | 
			
		||||
    <application
 | 
			
		||||
            android:label="Immich"
 | 
			
		||||
            android:name="${applicationName}"
 | 
			
		||||
            android:usesCleartextTraffic="true"
 | 
			
		||||
            android:icon="@mipmap/ic_launcher">
 | 
			
		||||
        <activity
 | 
			
		||||
                android:name=".MainActivity"
 | 
			
		||||
                android:exported="true"
 | 
			
		||||
                android:launchMode="singleTop"
 | 
			
		||||
                android:theme="@style/LaunchTheme"
 | 
			
		||||
                android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
 | 
			
		||||
                android:hardwareAccelerated="true"
 | 
			
		||||
                android:windowSoftInputMode="adjustResize">
 | 
			
		||||
            <!-- Specifies an Android theme to apply to this Activity as soon as
 | 
			
		||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.example.immich_mobile">
 | 
			
		||||
  <application android:label="Immich" android:name="${applicationName}" android:usesCleartextTraffic="true" android:icon="@mipmap/ic_launcher">
 | 
			
		||||
    <activity android:name=".MainActivity" android:exported="true" android:launchMode="singleTop" android:theme="@style/LaunchTheme" android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode" android:hardwareAccelerated="true" android:windowSoftInputMode="adjustResize">
 | 
			
		||||
      <!-- Specifies an Android theme to apply to this Activity as soon as
 | 
			
		||||
                 the Android process has started. This theme is visible to the user
 | 
			
		||||
                 while the Flutter UI initializes. After that, this theme continues
 | 
			
		||||
                 to determine the Window background behind the Flutter UI. -->
 | 
			
		||||
            <meta-data
 | 
			
		||||
                    android:name="io.flutter.embedding.android.NormalTheme"
 | 
			
		||||
                    android:resource="@style/NormalTheme"
 | 
			
		||||
            />
 | 
			
		||||
            <intent-filter>
 | 
			
		||||
                <action android:name="android.intent.action.MAIN"/>
 | 
			
		||||
                <category android:name="android.intent.category.LAUNCHER"/>
 | 
			
		||||
            </intent-filter>
 | 
			
		||||
             
 | 
			
		||||
        </activity>
 | 
			
		||||
        <!-- Don't delete the meta-data below.
 | 
			
		||||
             This is used by the Flutter tool to generate GeneratedPluginRegistrant.java -->
 | 
			
		||||
        <meta-data
 | 
			
		||||
                android:name="flutterEmbedding"
 | 
			
		||||
                android:value="2"/>
 | 
			
		||||
      <meta-data android:name="io.flutter.embedding.android.NormalTheme" android:resource="@style/NormalTheme" />
 | 
			
		||||
      <intent-filter>
 | 
			
		||||
        <action android:name="android.intent.action.MAIN" />
 | 
			
		||||
        <category android:name="android.intent.category.LAUNCHER" />
 | 
			
		||||
      </intent-filter>
 | 
			
		||||
 | 
			
		||||
       
 | 
			
		||||
    </application>
 | 
			
		||||
    <uses-permission android:name="android.permission.INTERNET"/>
 | 
			
		||||
</manifest>
 | 
			
		||||
    </activity>
 | 
			
		||||
    <!-- Don't delete the meta-data below.
 | 
			
		||||
             This is used by the Flutter tool to generate GeneratedPluginRegistrant.java -->
 | 
			
		||||
    <meta-data android:name="flutterEmbedding" android:value="2" />
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
  </application>
 | 
			
		||||
  <uses-permission android:name="android.permission.INTERNET" />
 | 
			
		||||
  <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
 | 
			
		||||
</manifest>
 | 
			
		||||
		Reference in New Issue
	
	Block a user