A cheap attempt at a native Bluesky client for Android

Build: Enable Gradle configuration cache

Enable the Gradle configuration cache to improve build performance by caching the result of the configuration phase and reusing it for subsequent builds.

+14
.idea/appInsightsSettings.xml
··· 4 4 <option name="selectedTabId" value="Firebase Crashlytics" /> 5 5 <option name="tabSettings"> 6 6 <map> 7 + <entry key="Android Vitals"> 8 + <value> 9 + <InsightsFilterSettings> 10 + <option name="connection"> 11 + <ConnectionSetting> 12 + <option name="appId" value="xyz.gsora.ocean" /> 13 + </ConnectionSetting> 14 + </option> 15 + <option name="signal" value="SIGNAL_UNSPECIFIED" /> 16 + <option name="timeIntervalDays" value="SEVEN_DAYS" /> 17 + <option name="visibilityType" value="ALL" /> 18 + </InsightsFilterSettings> 19 + </value> 20 + </entry> 7 21 <entry key="Firebase Crashlytics"> 8 22 <value> 9 23 <InsightsFilterSettings>
+2 -5
.idea/deploymentTargetSelector.xml
··· 4 4 <selectionStates> 5 5 <SelectionState runConfigName="app"> 6 6 <option name="selectionMode" value="DROPDOWN" /> 7 - <DropdownSelection timestamp="2025-10-04T09:44:47.288588Z"> 7 + <DropdownSelection timestamp="2025-10-25T17:24:56.264512060Z"> 8 8 <Target type="DEFAULT_BOOT"> 9 9 <handle> 10 - <DeviceId pluginId="LocalEmulator" identifier="path=/Users/gsora/.android/avd/Medium_Phone.avd" /> 10 + <DeviceId pluginId="LocalEmulator" identifier="path=/home/geesawra/.android/avd/Pixel_9a.avd" /> 11 11 </handle> 12 12 </Target> 13 13 </DropdownSelection> 14 14 <DialogSelection /> 15 - </SelectionState> 16 - <SelectionState runConfigName="LikeRowViewPreview"> 17 - <option name="selectionMode" value="DROPDOWN" /> 18 15 </SelectionState> 19 16 </selectionStates> 20 17 </component>
+2 -1
gradle.properties
··· 20 20 # Enables namespacing of each library's R class so that its R class includes only the 21 21 # resources declared in the library itself and none from the library's dependencies, 22 22 # thereby reducing the size of the R class for that library 23 - android.nonTransitiveRClass=true 23 + android.nonTransitiveRClass=true 24 + org.gradle.configuration-cache=true