Skip to content

Commit 0bdd929

Browse files
Dr. Maxie Dion SchmidtDr. Maxie Dion Schmidt
authored andcommitted
New Android Studio build config files - Started fresh with a new project and imported from source after updating AS versions to Meerkat
1 parent 53b2b0c commit 0bdd929

29 files changed

Lines changed: 444 additions & 988 deletions

File tree

AndroidFilePickerLightLibrary/build.gradle

Lines changed: 21 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,19 @@ def getDateTimestamp() {
1616
}
1717

1818
def getShellCommandOutput(String shellCmd) {
19-
20-
def cmdResult = ['bash', '-c', shellCmd].execute()
21-
cmdResult.waitFor()
22-
return cmdResult.text[0..-2]
23-
19+
try {
20+
def cmdResult = ['bash', '-c', shellCmd].execute()
21+
int waitResult = cmdResult.waitFor();
22+
if (cmdResult.text.length() == 0 || waitResult != 0) {
23+
return '';
24+
}
25+
String cmdResultText = cmdResult.text;
26+
return cmdResultText.substring(0, cmdResultText.length() - 1);
27+
//return cmdResult.text[0..-2]
28+
} catch (Exception streamError) {
29+
streamError.printStackTrace();
30+
return '';
31+
}
2432
}
2533

2634
def getGitCommitHash() {
@@ -39,24 +47,21 @@ android {
3947

4048
defaultConfig {
4149

42-
//ndkVersion null
4350
minSdkVersion 29
44-
targetSdkVersion 33
45-
compileSdkVersion 33
46-
compileSdk 33
51+
targetSdkVersion 30
52+
compileSdkVersion 35
53+
compileSdk 35
4754
versionCode 23
4855
versionName "1.3.0"
49-
//buildToolsVersion "35.0.0"
5056
buildFeatures.buildConfig = true
57+
buildToolsVersion '35.0.1'
5158

5259
}
5360

5461
namespace 'com.maxieds.androidfilepickerlightlibrary'
5562

5663
compileOptions {
5764

58-
//sourceCompatibility JavaVersion.VERSION_1_8
59-
//targetCompatibility JavaVersion.VERSION_1_8
6065
sourceCompatibility JavaVersion.VERSION_17
6166
targetCompatibility JavaVersion.VERSION_17
6267

@@ -120,19 +125,15 @@ android {
120125

121126
}
122127

123-
repositories {
124-
125-
mavenCentral()
126-
maven { url 'https://jitpack.io' }
127-
128-
}
129-
130128
dependencies {
131129

132130
implementation fileTree(dir: "libs", include: ["*.jar"])
133131
implementation 'androidx.appcompat:appcompat:1.4.2'
134-
implementation 'com.android.support:recyclerview-v7:30.0.0'
132+
implementation 'androidx.recyclerview:recyclerview:1.2.1'
135133
implementation 'org.apache.commons:commons-text:1.7'
136134
implementation 'pub.devrel:easypermissions:3.0.0'
137135

136+
testImplementation 'junit:junit:4.13.2'
137+
androidTestImplementation 'androidx.test:core:1.5.0'
138+
138139
}

AndroidFilePickerLightLibrary/build/generated/source/buildConfig/debug/com/maxieds/androidfilepickerlightlibrary/BuildConfig.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ public final class BuildConfig {
88
public static final String LIBRARY_PACKAGE_NAME = "com.maxieds.androidfilepickerlightlibrary";
99
public static final String BUILD_TYPE = "debug";
1010
// Field from build type: debug
11-
public static final String BUILD_TIMESTAMP = "2026-02-04-124524";
11+
public static final String BUILD_TIMESTAMP = "2026-02-26-102317";
1212
// Field from build type: debug
13-
public static final String GIT_COMMIT_DATE = "Sun Feb 1 15:02:14 2026 -0600";
13+
public static final String GIT_COMMIT_DATE = "";
1414
// Field from build type: debug
15-
public static final String GIT_COMMIT_HASH = "220820210f2f";
15+
public static final String GIT_COMMIT_HASH = "";
1616
// Field from build type: debug
1717
public static final long VERSION_CODE = 23L;
1818
// Field from build type: debug

AndroidFilePickerLightLibrary/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
package="com.maxieds.androidfilepickerlightlibrary" >
2121

2222
<uses-sdk android:minSdkVersion="29" />
23-
//package="com.maxieds.androidfilepickerlightlibrary">
23+
2424
<uses-permission
2525
android:name="android.permission.WRITE_EXTERNAL_STORAGE"
2626
android:required="true" />
Binary file not shown.

AndroidFilePickerLightLibrary/build/intermediates/compile_symbol_list/debug/generateDebugRFile/R.txt

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ int attr __colorAccentMedium 0x0
44
int attr __colorPrimary 0x0
55
int attr __colorPrimaryDark 0x0
66
int attr __colorPrimaryVeryDark 0x0
7+
int attr colorAccent 0x0
8+
int attr colorAccentLight 0x0
9+
int attr colorAccentMedium 0x0
10+
int attr colorPrimary 0x0
11+
int attr colorPrimaryDark 0x0
12+
int attr colorPrimaryVeryDark 0x0
713
int attr colorToolbarDivider 0x0
814
int attr colorToolbarNav 0x0
915
int attr defaultFileIcon 0x0
@@ -33,6 +39,9 @@ int color __colorPrimary 0x0
3339
int color __colorPrimaryDark 0x0
3440
int color __colorPrimaryVeryDark 0x0
3541
int color __colorTransparent 0x0
42+
int color colorAccent 0x0
43+
int color colorAccentLight 0x0
44+
int color colorAccentMedium 0x0
3645
int color colorFileListDivider_border 0x0
3746
int color colorFileListDivider_gradientEnd 0x0
3847
int color colorFileListDivider_gradientStart 0x0
@@ -41,6 +50,9 @@ int color colorMainToolbarBackground2 0x0
4150
int color colorMainToolbarBackground3 0x0
4251
int color colorMainToolbarBackground4 0x0
4352
int color colorMainToolbarForegroundText 0x0
53+
int color colorPrimary 0x0
54+
int color colorPrimaryDark 0x0
55+
int color colorPrimaryVeryDark 0x0
4456
int color colorToolbarDivider 0x0
4557
int color colorToolbarNav 0x0
4658
int drawable apk_file_icon32 0x0

AndroidFilePickerLightLibrary/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties

Lines changed: 57 additions & 57 deletions
Large diffs are not rendered by default.

AndroidFilePickerLightLibrary/build/intermediates/incremental/debug/packageDebugResources/merged.dir/values/values.xml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@
66
<attr format="reference|color" name="__colorPrimary"/>
77
<attr format="reference|color" name="__colorPrimaryDark"/>
88
<attr format="reference|color" name="__colorPrimaryVeryDark"/>
9+
<attr format="reference|color" name="colorAccent"/>
10+
<attr format="reference|color" name="colorAccentLight"/>
11+
<attr format="reference|color" name="colorAccentMedium"/>
12+
<attr format="reference|color" name="colorPrimary"/>
13+
<attr format="reference|color" name="colorPrimaryDark"/>
14+
<attr format="reference|color" name="colorPrimaryVeryDark"/>
915
<attr format="reference|color" name="colorToolbarDivider"/>
1016
<attr format="reference|color" name="colorToolbarNav"/>
1117
<attr format="reference" name="defaultFileIcon"/>
@@ -35,6 +41,9 @@
3541
<color name="__colorPrimaryDark">#215270</color>
3642
<color name="__colorPrimaryVeryDark">#061B29</color>
3743
<color name="__colorTransparent">@android:color/transparent</color>
44+
<color name="colorAccent">#A7CEE6</color>
45+
<color name="colorAccentLight">#E9EEF1</color>
46+
<color name="colorAccentMedium">#7A97A9</color>
3847
<color name="colorFileListDivider_border">#90A9B8</color>
3948
<color name="colorFileListDivider_gradientEnd">#E9EEF1</color>
4049
<color name="colorFileListDivider_gradientStart">#BCCBD4</color>
@@ -43,6 +52,9 @@
4352
<color name="colorMainToolbarBackground3">#354954</color>
4453
<color name="colorMainToolbarBackground4">#4f5F69</color>
4554
<color name="colorMainToolbarForegroundText">#DCE4E8</color>
55+
<color name="colorPrimary">#72B1D6</color>
56+
<color name="colorPrimaryDark">#215270</color>
57+
<color name="colorPrimaryVeryDark">#061B29</color>
4658
<color name="colorToolbarDivider">#215270</color>
4759
<color name="colorToolbarNav">#A6BAC6</color>
4860
<string name="errorMsgNotSelectable">Cannot select the file path (too many or no multiple)</string>

AndroidFilePickerLightLibrary/build/intermediates/incremental/debug/packageDebugResources/merger.xml

Lines changed: 3 additions & 3 deletions
Large diffs are not rendered by default.

AndroidFilePickerLightLibrary/build/intermediates/local_only_symbol_list/debug/parseDebugLocalResources/R-def.txt

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ attr __colorAccentMedium
66
attr __colorPrimary
77
attr __colorPrimaryDark
88
attr __colorPrimaryVeryDark
9+
attr colorAccent
10+
attr colorAccentLight
11+
attr colorAccentMedium
12+
attr colorPrimary
13+
attr colorPrimaryDark
14+
attr colorPrimaryVeryDark
915
attr colorToolbarDivider
1016
attr colorToolbarNav
1117
attr defaultFileIcon
@@ -35,6 +41,9 @@ color __colorPrimary
3541
color __colorPrimaryDark
3642
color __colorPrimaryVeryDark
3743
color __colorTransparent
44+
color colorAccent
45+
color colorAccentLight
46+
color colorAccentMedium
3847
color colorFileListDivider_border
3948
color colorFileListDivider_gradientEnd
4049
color colorFileListDivider_gradientStart
@@ -43,6 +52,9 @@ color colorMainToolbarBackground2
4352
color colorMainToolbarBackground3
4453
color colorMainToolbarBackground4
4554
color colorMainToolbarForegroundText
55+
color colorPrimary
56+
color colorPrimaryDark
57+
color colorPrimaryVeryDark
4658
color colorToolbarDivider
4759
color colorToolbarNav
4860
drawable apk_file_icon32

0 commit comments

Comments
 (0)