Skip to content

Commit 2208202

Browse files
Dr. Maxie Dion SchmidtDr. Maxie Dion Schmidt
authored andcommitted
Stashing incremetal changes - make it compile with AS Bumblebee
1 parent 2b62b87 commit 2208202

155 files changed

Lines changed: 3345 additions & 72 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

AndroidFilePickerLightLibrary/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ android {
5151

5252
}
5353

54-
namespace 'com.maxieds.androidfilepickerlight'
54+
namespace 'com.maxieds.androidfilepickerlightlibrary'
5555

5656
compileOptions {
5757

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
/**
2+
* Automatically generated file. DO NOT MODIFY
3+
*/
4+
package com.maxieds.androidfilepickerlightlibrary;
5+
6+
public final class BuildConfig {
7+
public static final boolean DEBUG = Boolean.parseBoolean("true");
8+
public static final String LIBRARY_PACKAGE_NAME = "com.maxieds.androidfilepickerlightlibrary";
9+
public static final String BUILD_TYPE = "debug";
10+
// Field from build type: debug
11+
public static final String BUILD_TIMESTAMP = "2026-02-01-141740";
12+
// Field from build type: debug
13+
public static final String GIT_COMMIT_DATE = "Thu Jan 29 18:31:14 2026 -0600";
14+
// Field from build type: debug
15+
public static final String GIT_COMMIT_HASH = "2b62b879fe0c";
16+
// Field from build type: debug
17+
public static final long VERSION_CODE = 23L;
18+
// Field from build type: debug
19+
public static final String VERSION_NAME = "1.3.0";
20+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
/**
2+
* Automatically generated file. DO NOT MODIFY
3+
*/
4+
package com.maxieds.androidfilepickerlightlibrary;
5+
6+
public final class BuildConfig {
7+
public static final boolean DEBUG = false;
8+
public static final String LIBRARY_PACKAGE_NAME = "com.maxieds.androidfilepickerlightlibrary";
9+
public static final String BUILD_TYPE = "release";
10+
// Field from build type: release
11+
public static final String BUILD_TIMESTAMP = "2026-02-01-141427";
12+
// Field from build type: release
13+
public static final String GIT_COMMIT_DATE = "Thu Jan 29 18:31:14 2026 -0600";
14+
// Field from build type: release
15+
public static final String GIT_COMMIT_HASH = "2b62b879fe0c";
16+
// Field from build type: release
17+
public static final long VERSION_CODE = 23L;
18+
// Field from build type: release
19+
public static final String VERSION_NAME = "1.3.0";
20+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,93 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<!--
3+
This program (the AndroidFilePickerLight library) is free software written by
4+
Maxie Dion Schmidt: you can redistribute it and/or modify
5+
it under the terms of the GNU General Public License as published by
6+
the Free Software Foundation, either version 3 of the License, or
7+
(at your option) any later version.
8+
9+
This program is distributed in the hope that it will be useful,
10+
but WITHOUT ANY WARRANTY; without even the implied warranty of
11+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12+
GNU General Public License for more details.
13+
14+
The complete license provided with source distributions of this library is
15+
available at the following link:
16+
https://github.com/maxieds/AndroidFilePickerLight
17+
-->
18+
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
19+
xmlns:tools="http://schemas.android.com/tools"
20+
package="com.maxieds.androidfilepickerlightlibrary" >
21+
22+
<uses-sdk android:minSdkVersion="29" />
23+
//package="com.maxieds.androidfilepickerlightlibrary">
24+
<uses-permission
25+
android:name="android.permission.WRITE_EXTERNAL_STORAGE"
26+
android:required="true" />
27+
<uses-permission
28+
android:name="android.permission.READ_EXTERNAL_STORAGE"
29+
android:required="true" />
30+
<uses-permission
31+
android:name="android.permission.ACCESS_MEDIA_LOCATION"
32+
android:required="true" />
33+
<uses-permission
34+
android:name="android.permission.INTERNET"
35+
android:required="true" />
36+
37+
<application
38+
android:defaultToDeviceProtectedStorage="true"
39+
android:excludeFromRecents="false"
40+
android:hardwareAccelerated="true"
41+
android:installLocation="preferExternal"
42+
android:largeHeap="true"
43+
android:launchMode="singleTop"
44+
android:noHistory="false"
45+
android:preserveLegacyExternalStorage="true"
46+
android:requestLegacyExternalStorage="true"
47+
android:supportsRtl="true"
48+
android:usesCleartextTraffic="false" >
49+
<activity
50+
android:name="com.maxieds.androidfilepickerlightlibrary.FileChooserActivity"
51+
android:alwaysRetainTaskState="true"
52+
android:autoRemoveFromRecents="true"
53+
android:clearTaskOnLaunch="true"
54+
android:excludeFromRecents="true"
55+
android:exported="true"
56+
android:finishOnTaskLaunch="true"
57+
android:grantUriPermissions="true"
58+
android:hardwareAccelerated="true"
59+
android:immersive="true"
60+
android:launchMode="singleTop"
61+
android:noHistory="true"
62+
android:persistableMode="persistNever"
63+
android:resizeableActivity="false"
64+
android:screenOrientation="nosensor"
65+
android:stateNotNeeded="true"
66+
android:uiOptions="none" >
67+
<intent-filter android:priority="1000" >
68+
<action android:name="android.intent.action.ACTION_PICK_ACTIVITY" />
69+
<!-- <category android:name="android.intent.category.HOME" /> -->
70+
<!-- <category android:name="android.intent.category.DEFAULT" /> -->
71+
<!-- <category android:name="android.intent.category.LAUNCHER" /> -->
72+
</intent-filter>
73+
</activity>
74+
75+
<provider
76+
android:name="com.maxieds.androidfilepickerlightlibrary.BasicFileProvider"
77+
android:authorities="dollar_openBracket_applicationId_closeBracket.FileChooserActivity"
78+
android:enabled="true"
79+
android:exported="true"
80+
android:grantUriPermissions="true"
81+
android:initOrder="100"
82+
android:permission="android.permission.MANAGE_DOCUMENTS" >
83+
<intent-filter>
84+
<action android:name="android.content.action.DOCUMENTS_PROVIDER" />
85+
</intent-filter>
86+
87+
<meta-data
88+
android:name="android.support.FILE_PROVIDER_PATHS"
89+
android:resource="@xml/file_provider_paths_base" />
90+
</provider>
91+
</application>
92+
93+
</manifest>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"version": 3,
3+
"artifactType": {
4+
"type": "AAPT_FRIENDLY_MERGED_MANIFESTS",
5+
"kind": "Directory"
6+
},
7+
"applicationId": "com.maxieds.androidfilepickerlightlibrary",
8+
"variantName": "debug",
9+
"elements": [
10+
{
11+
"type": "SINGLE",
12+
"filters": [],
13+
"attributes": [],
14+
"outputFile": "AndroidManifest.xml"
15+
}
16+
],
17+
"elementType": "File"
18+
}
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
aarFormatVersion=1.0
2+
aarMetadataVersion=1.0
3+
minCompileSdk=1
4+
minCompileSdkExtension=0
5+
minAndroidGradlePluginVersion=1.0.0
6+
coreLibraryDesugaringEnabled=false
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{}

AndroidFilePickerLightLibrary/build/intermediates/annotations_typedef_file/debug/extractDebugAnnotations/typedefs.txt

Whitespace-only changes.

0 commit comments

Comments
 (0)