Latest hike: Innerthal – Schwarzenegg

Komoot Hiking tour: https://www.komoot.com/tour/1161942726

Equipment used:

GoPro Hero 8 Black

πŸ‡ΊπŸ‡Έ US: https://amzn.to/3NyfCtP

πŸ‡¬πŸ‡§ UK: https://amzn.to/3qy8jch

πŸ‡©πŸ‡ͺ DE: https://amzn.to/3CGmWxf

GoPro Smart Remote (GoPro Official Accessory)

πŸ‡ΊπŸ‡Έ US: https://amzn.to/3CoKwOU

πŸ‡¬πŸ‡§ UK: https://amzn.to/3P6HOVK

πŸ‡©πŸ‡ͺ DE: https://amzn.to/43Qetms

GoPro Performance Chest Mount

πŸ‡ΊπŸ‡Έ US: https://amzn.to/43V1X50

πŸ‡¬πŸ‡§ UK: https://amzn.to/3N4IOHi

πŸ‡©πŸ‡ͺ DE: https://amzn.to/3N4IOHi

GoPro Media Mod (HERO8 Black)

πŸ‡ΊπŸ‡Έ US: https://amzn.to/3MVTZSu

πŸ‡¬πŸ‡§ UK: https://amzn.to/3CtULkF

πŸ‡©πŸ‡ͺ DE: https://amzn.to/3qAYL0n

Roland CS-10EM Binaural Microphones/Earphones

πŸ‡ΊπŸ‡Έ US: https://amzn.to/43xLzbb (sold out)

πŸ‡¬πŸ‡§ UK: https://amzn.to/3qBDi7l (sold out)

πŸ‡©πŸ‡ͺ DE: https://amzn.to/3qBDi7l

CamelBak Water reservoir 3L

πŸ‡ΊπŸ‡Έ US: https://amzn.to/42wc1At

πŸ‡¬πŸ‡§ UK: https://amzn.to/3P2PGrj

πŸ‡©πŸ‡ͺ DE: https://amzn.to/3CqB4uh

Hiking boots Lowa RENEGADE GTX MID

πŸ‡ΊπŸ‡Έ US: https://amzn.to/45PQ2HA

πŸ‡¬πŸ‡§ UK: https://amzn.to/3N2LHbv

πŸ‡©πŸ‡ͺ DE: https://amzn.to/3X4RVw3

Backpack Mammut Lithium 20

πŸ‡ΊπŸ‡Έ US: https://amzn.to/3N5oK7w

πŸ‡¬πŸ‡§ UK: https://amzn.to/3p67KpH

πŸ‡©πŸ‡ͺ DE: https://amzn.to/3P1AlHr

Nordic walking poles Komperdell Carbon C3 Pro

πŸ‡ΊπŸ‡Έ US: https://amzn.to/3N4FewQ

πŸ‡¬πŸ‡§ UK: https://amzn.to/3NnZ8UV

πŸ‡©πŸ‡ͺ DE: https://amzn.to/3NqPlgY

Android Studio and Flutter: “this and base files have different roots”

If you encounter this error in Android Studio, and you have your source files in a different folder than the Flutter installation, you’ll have to move that Pub Cache folder to the same drive.

Move the folder located in C:\Users\<YOURNAME>\AppData\Local\Pub\Cache to the other drive. E.g. E:\src\Pub\Cache (or where ever you prefer)

Then set an Environment variable called PUB_CACHE to point to that new folder.

You might have to do a cache repair using:
flutter pub cache repair

Picked up a pair of Amigas

The result of opening a bottle of wine on a Friday evening and browsing to eBay… Unlike the A1200, these are relatively cheap. To my surprise they are both in excellent condition for being 30 years old. Both with unbroken warranty seals! That leaves me with second thoughts about modding them with the latest Kickstart ROMs and CF HDs

Unsupported class version number [52.0] (maximum 51.0, Java 1.7)

Xamarin Android Unsupported class version issues

When doing Xamarin Android development, you may have come across the error message after enabling MultiDex:

Error Can't read [C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\Common7\IDE\ReferenceAssemblies\Microsoft\Framework\MonoAndroid\v7.1\mono.android.jar] 
(Can't process class [android/app/ActivityTracker.class] (Unsupported class version number [52.0] (maximum 51.0, Java 1.7)))

This is most likely because of an older ProGuard installation.

Download the latest ProGuard from here (v5.3.3 as of this writing).

Determine the current Android SDK location that Xamarin is using by checking Tools->Options->Xamarin->Android Settings.

In my case it is C:\Users\Magnus\AppData\Local\Android\android-sdk.

So here is how to to so update the Proguard installation;

In the tools sub folder, rename the current proguard to proguard.old.

Extract the contents of the latest ProGuard zip file to a folder named proguard.

That should do it. Just remember that any changes in the SDK installation (using the Android SDK Manager) will put back the older version, so repeat this after an SDK update.