Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
cc15b32
Add missing super calls in overridden methods.
powerje Mar 10, 2026
af8145c
Move allocations out of onDraw methods into preallocated fields.
powerje Mar 10, 2026
436fc35
Fix ResourceType lint warnings with @SuppressLint for dynamic view IDs.
powerje Mar 10, 2026
175ab11
Suppress DiscouragedApi warnings for cross-module resource lookups.
powerje Mar 10, 2026
e811cc0
Replace anonymous Handlers with static inner classes to fix memory le…
powerje Mar 10, 2026
37ea351
Fix XML layout lint warnings across all layout variants.
powerje Mar 10, 2026
59b2a3d
Fix misc Java lint warnings: ObsoleteSdkInt, SwitchIntDef, ClickableV…
powerje Mar 10, 2026
0355f0b
Fix ManifestOrder, ScopedStorage, ApplySharedPref, and DefaultLocale …
powerje Mar 10, 2026
0427c10
Regenerate lint baseline after fixing 770+ warnings.
powerje Mar 10, 2026
fb56fdd
Replace setText concatenation with format string resources.
powerje Mar 10, 2026
dd60cd4
Replace hardcoded text with string resource references in layouts.
powerje Mar 10, 2026
08c79aa
Suppress InflateParams warnings for intentional null-parent inflations.
powerje Mar 10, 2026
a12870d
Regenerate lint baseline after fixing 1200+ warnings.
powerje Mar 10, 2026
29b23e3
Fix remaining XML and Java lint warnings across multiple categories.
powerje Mar 10, 2026
172a0c9
Regenerate lint baseline: 1869 to 538 warnings (71% reduction).
powerje Mar 10, 2026
cac086b
Fix SuspiciousIndentation, ObsoleteSdkInt, SdCardPath, SetTextI18n, a…
powerje Mar 10, 2026
bb3b0cd
Regenerate lint baseline: 1869 to 523 warnings (72% reduction).
powerje Mar 10, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions BTLib/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android">

<uses-permission android:name="android.permission.VIBRATE"/>
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" android:maxSdkVersion="28" />
<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
<uses-permission android:name="android.permission.FOREGROUND_SERVICE_CONNECTED_DEVICE" />
<uses-permission android:name="android.permission.CHANGE_NETWORK_STATE" />

<application android:label="BlowTorch" android:theme="@android:style/Theme.NoTitleBar">
<!-- android:windowSoftInputMode="adjustResize" -->
<activity android:name="com.happygoatstudios.bt.window.MainWindow"
Expand All @@ -20,16 +29,7 @@
<action android:name="com.happygoatstudios.bt.service.IStellarService"/>
</intent-filter>
</service>


</application>

<uses-permission android:name="android.permission.VIBRATE"/>
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
<uses-permission android:name="android.permission.FOREGROUND_SERVICE_CONNECTED_DEVICE" />
<uses-permission android:name="android.permission.CHANGE_NETWORK_STATE" />

</manifest>
</manifest>
Loading