Skip to content

Commit f2f290e

Browse files
Stability was improved
1 parent 5aea315 commit f2f290e

File tree

253 files changed

+429
-8624
lines changed

Some content is hidden

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

253 files changed

+429
-8624
lines changed
Binary file not shown.
Binary file not shown.

.gradle/6.5/fileHashes/fileHashes.bin

850 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
6.01 KB
Binary file not shown.
0 Bytes
Binary file not shown.
Binary file not shown.
1.85 KB
Binary file not shown.

.gradle/checksums/checksums.lock

0 Bytes
Binary file not shown.

.gradle/checksums/sha1-checksums.bin

216 Bytes
Binary file not shown.

.idea/caches/build_file_checksums.ser

0 Bytes
Binary file not shown.

app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ android {
66
applicationId "berthold.beamcalc"
77
minSdkVersion 23
88
targetSdkVersion 30
9-
versionCode 21
10-
versionName "2.1"
9+
versionCode 22
10+
versionName "2.2"
1111
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1212
}
1313
buildTypes {

app/build/generated/source/buildConfig/debug/berthold/beamcalc/BuildConfig.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ public final class BuildConfig {
77
public static final boolean DEBUG = Boolean.parseBoolean("true");
88
public static final String APPLICATION_ID = "berthold.beamcalc";
99
public static final String BUILD_TYPE = "debug";
10-
public static final int VERSION_CODE = 21;
11-
public static final String VERSION_NAME = "2.1";
10+
public static final int VERSION_CODE = 22;
11+
public static final String VERSION_NAME = "2.2";
1212
}

app/build/generated/source/buildConfig/release/berthold/beamcalc/BuildConfig.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ public final class BuildConfig {
77
public static final boolean DEBUG = false;
88
public static final String APPLICATION_ID = "berthold.beamcalc";
99
public static final String BUILD_TYPE = "release";
10-
public static final int VERSION_CODE = 20;
11-
public static final String VERSION_NAME = "2.0";
10+
public static final int VERSION_CODE = 22;
11+
public static final String VERSION_NAME = "2.2";
1212
}
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"version": 2,
3+
"artifactType": {
4+
"type": "BUNDLE",
5+
"kind": "RegularFile"
6+
},
7+
"applicationId": "berthold.beamcalc",
8+
"variantName": "debug",
9+
"elements": [
10+
{
11+
"type": "SINGLE",
12+
"filters": [],
13+
"outputFile": "../../../outputs/bundle/debug/app-debug.aab"
14+
}
15+
]
16+
}
Lines changed: 70 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3+
package="berthold.beamcalc"
4+
android:versionCode="22"
5+
android:versionName="2.2" >
6+
7+
<uses-sdk
8+
android:minSdkVersion="23"
9+
android:targetSdkVersion="30" />
10+
11+
<!-- Permissions -->
12+
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
13+
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
14+
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
15+
<uses-permission android:name="android.permission.INTERNET" />
16+
17+
<!-- Permission will be merged into the manifest of the hosting app. -->
18+
<!-- Is required to launch foreground extraction service for targetSdkVersion 28+. -->
19+
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" /> <!-- Activity's -->
20+
<application
21+
android:allowBackup="true"
22+
android:appComponentFactory="androidx.core.app.CoreComponentFactory"
23+
android:debuggable="true"
24+
android:extractNativeLibs="false"
25+
android:icon="@mipmap/icon"
26+
android:label="@string/app_name"
27+
android:supportsRtl="true"
28+
android:theme="@style/AppTheme" >
29+
<activity
30+
android:name="berthold.beamcalc.MainActivity"
31+
android:label="@string/app_name"
32+
android:theme="@style/AppTheme.NoActionBar" >
33+
<intent-filter>
34+
<action android:name="android.intent.action.MAIN" />
35+
36+
<category android:name="android.intent.category.LAUNCHER" />
37+
</intent-filter>
38+
</activity>
39+
<activity android:name="berthold.beamcalc.SaveBeamDrawing" />
40+
<activity android:name="berthold.filedialogtool.FileDialog" />
41+
<activity android:name="berthold.beamcalc.InfoActivity" />
42+
<!-- The activities will be merged into the manifest of the hosting app. -->
43+
<activity
44+
android:name="com.google.android.play.core.missingsplits.PlayCoreMissingSplitsActivity"
45+
android:enabled="false"
46+
android:exported="false"
47+
android:launchMode="singleInstance"
48+
android:process=":playcore_missing_splits_activity"
49+
android:stateNotNeeded="true" />
50+
<activity
51+
android:name="com.google.android.play.core.common.PlayCoreDialogWrapperActivity"
52+
android:enabled="false"
53+
android:exported="false"
54+
android:stateNotNeeded="true"
55+
android:theme="@style/Theme.PlayCore.Transparent" /> <!-- The services will be merged into the manifest of the hosting app. -->
56+
<service
57+
android:name="com.google.android.play.core.assetpacks.AssetPackExtractionService"
58+
android:enabled="false"
59+
android:exported="true" >
60+
<meta-data
61+
android:name="com.google.android.play.core.assetpacks.versionCode"
62+
android:value="11000" />
63+
</service>
64+
<service
65+
android:name="com.google.android.play.core.assetpacks.ExtractionForegroundService"
66+
android:enabled="false"
67+
android:exported="false" />
68+
</application>
69+
70+
</manifest>

app/build/intermediates/bundle_manifest/release/AndroidManifest.xml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
33
package="berthold.beamcalc"
4-
android:versionCode="20"
5-
android:versionName="2.0" >
4+
android:versionCode="22"
5+
android:versionName="2.2" >
66

77
<uses-sdk
88
android:minSdkVersion="23"
99
android:targetSdkVersion="30" />
1010

1111
<!-- Permissions -->
12+
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
1213
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
1314
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
1415
<uses-permission android:name="android.permission.INTERNET" />
Binary file not shown.
Binary file not shown.
Binary file not shown.

app/build/intermediates/incremental/mergeReleaseResources/compile-file-map.properties

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#Wed Feb 23 21:18:49 CET 2022
1+
#Sun Mar 06 20:07:05 CET 2022
22
/media/berthold/Bertholds\ Zeug/NFSShare/MyCode/AndroidStudioProjects/MyApps/Beam-Calc/app/src/main/res/layout/load_list_row.xml=/media/berthold/Bertholds Zeug/NFSShare/MyCode/AndroidStudioProjects/MyApps/Beam-Calc/app/build/intermediates/res/merged/release/layout_load_list_row.xml.flat
33
/media/berthold/Bertholds\ Zeug/NFSShare/MyCode/AndroidStudioProjects/MyApps/Beam-Calc/app/src/main/res/layout/content_main.xml=/media/berthold/Bertholds Zeug/NFSShare/MyCode/AndroidStudioProjects/MyApps/Beam-Calc/app/build/intermediates/res/merged/release/layout_content_main.xml.flat
44
/media/berthold/Bertholds\ Zeug/NFSShare/MyCode/AndroidStudioProjects/MyApps/Beam-Calc/app/src/main/res/drawable/raster_on.png=/media/berthold/Bertholds Zeug/NFSShare/MyCode/AndroidStudioProjects/MyApps/Beam-Calc/app/build/intermediates/res/merged/release/drawable_raster_on.png.flat
@@ -9,8 +9,8 @@
99
/media/berthold/Bertholds\ Zeug/NFSShare/MyCode/AndroidStudioProjects/MyApps/Beam-Calc/app/src/main/res/layout-land/content_main.xml=/media/berthold/Bertholds Zeug/NFSShare/MyCode/AndroidStudioProjects/MyApps/Beam-Calc/app/build/intermediates/res/merged/release/layout-land_content_main.xml.flat
1010
/media/berthold/Bertholds\ Zeug/NFSShare/MyCode/AndroidStudioProjects/MyApps/Beam-Calc/app/src/main/res/layout/fragment_dialog_yes_no.xml=/media/berthold/Bertholds Zeug/NFSShare/MyCode/AndroidStudioProjects/MyApps/Beam-Calc/app/build/intermediates/res/merged/release/layout_fragment_dialog_yes_no.xml.flat
1111
/media/berthold/Bertholds\ Zeug/NFSShare/MyCode/AndroidStudioProjects/MyApps/Beam-Calc/app/src/main/res/drawable/icon.png=/media/berthold/Bertholds Zeug/NFSShare/MyCode/AndroidStudioProjects/MyApps/Beam-Calc/app/build/intermediates/res/merged/release/drawable_icon.png.flat
12-
/media/berthold/Bertholds\ Zeug/NFSShare/MyCode/AndroidStudioProjects/MyApps/Beam-Calc/app/src/main/res/drawable/support.png=/media/berthold/Bertholds Zeug/NFSShare/MyCode/AndroidStudioProjects/MyApps/Beam-Calc/app/build/intermediates/res/merged/release/drawable_support.png.flat
1312
/media/berthold/Bertholds\ Zeug/NFSShare/MyCode/AndroidStudioProjects/MyApps/Beam-Calc/app/src/main/res/drawable/openfolder.png=/media/berthold/Bertholds Zeug/NFSShare/MyCode/AndroidStudioProjects/MyApps/Beam-Calc/app/build/intermediates/res/merged/release/drawable_openfolder.png.flat
13+
/media/berthold/Bertholds\ Zeug/NFSShare/MyCode/AndroidStudioProjects/MyApps/Beam-Calc/app/src/main/res/drawable/support.png=/media/berthold/Bertholds Zeug/NFSShare/MyCode/AndroidStudioProjects/MyApps/Beam-Calc/app/build/intermediates/res/merged/release/drawable_support.png.flat
1414
/media/berthold/Bertholds\ Zeug/NFSShare/MyCode/AndroidStudioProjects/MyApps/Beam-Calc/app/src/main/res/drawable/arrowdown.png=/media/berthold/Bertholds Zeug/NFSShare/MyCode/AndroidStudioProjects/MyApps/Beam-Calc/app/build/intermediates/res/merged/release/drawable_arrowdown.png.flat
1515
/media/berthold/Bertholds\ Zeug/NFSShare/MyCode/AndroidStudioProjects/MyApps/Beam-Calc/app/src/main/res/layout/fragment_load_input.xml=/media/berthold/Bertholds Zeug/NFSShare/MyCode/AndroidStudioProjects/MyApps/Beam-Calc/app/build/intermediates/res/merged/release/layout_fragment_load_input.xml.flat
1616
/media/berthold/Bertholds\ Zeug/NFSShare/MyCode/AndroidStudioProjects/MyApps/Beam-Calc/app/src/main/res/mipmap-xxxhdpi/icon.png=/media/berthold/Bertholds Zeug/NFSShare/MyCode/AndroidStudioProjects/MyApps/Beam-Calc/app/build/intermediates/res/merged/release/mipmap-xxxhdpi_icon.png.flat
@@ -23,12 +23,12 @@
2323
/media/berthold/Bertholds\ Zeug/NFSShare/MyCode/AndroidStudioProjects/MyApps/Beam-Calc/app/src/main/res/drawable/show_detailed_solution_off.png=/media/berthold/Bertholds Zeug/NFSShare/MyCode/AndroidStudioProjects/MyApps/Beam-Calc/app/build/intermediates/res/merged/release/drawable_show_detailed_solution_off.png.flat
2424
/media/berthold/Bertholds\ Zeug/NFSShare/MyCode/AndroidStudioProjects/MyApps/Beam-Calc/app/src/main/res/drawable/camera.png=/media/berthold/Bertholds Zeug/NFSShare/MyCode/AndroidStudioProjects/MyApps/Beam-Calc/app/build/intermediates/res/merged/release/drawable_camera.png.flat
2525
/media/berthold/Bertholds\ Zeug/NFSShare/MyCode/AndroidStudioProjects/MyApps/Beam-Calc/app/src/main/res/layout/activity_main.xml=/media/berthold/Bertholds Zeug/NFSShare/MyCode/AndroidStudioProjects/MyApps/Beam-Calc/app/build/intermediates/res/merged/release/layout_activity_main.xml.flat
26-
/media/berthold/Bertholds\ Zeug/NFSShare/MyCode/AndroidStudioProjects/MyApps/Beam-Calc/app/src/main/res/drawable/baseline_keyboard_arrow_down_black_18dp.png=/media/berthold/Bertholds Zeug/NFSShare/MyCode/AndroidStudioProjects/MyApps/Beam-Calc/app/build/intermediates/res/merged/release/drawable_baseline_keyboard_arrow_down_black_18dp.png.flat
2726
/media/berthold/Bertholds\ Zeug/NFSShare/MyCode/AndroidStudioProjects/MyApps/Beam-Calc/app/src/main/res/drawable/baseline_keyboard_arrow_up_black_18dp.png=/media/berthold/Bertholds Zeug/NFSShare/MyCode/AndroidStudioProjects/MyApps/Beam-Calc/app/build/intermediates/res/merged/release/drawable_baseline_keyboard_arrow_up_black_18dp.png.flat
27+
/media/berthold/Bertholds\ Zeug/NFSShare/MyCode/AndroidStudioProjects/MyApps/Beam-Calc/app/src/main/res/drawable/baseline_keyboard_arrow_down_black_18dp.png=/media/berthold/Bertholds Zeug/NFSShare/MyCode/AndroidStudioProjects/MyApps/Beam-Calc/app/build/intermediates/res/merged/release/drawable_baseline_keyboard_arrow_down_black_18dp.png.flat
2828
/media/berthold/Bertholds\ Zeug/NFSShare/MyCode/AndroidStudioProjects/MyApps/Beam-Calc/app/src/main/res/drawable/leading_signs.png=/media/berthold/Bertholds Zeug/NFSShare/MyCode/AndroidStudioProjects/MyApps/Beam-Calc/app/build/intermediates/res/merged/release/drawable_leading_signs.png.flat
2929
/media/berthold/Bertholds\ Zeug/NFSShare/MyCode/AndroidStudioProjects/MyApps/Beam-Calc/app/src/main/res/drawable/fixedsupport.png=/media/berthold/Bertholds Zeug/NFSShare/MyCode/AndroidStudioProjects/MyApps/Beam-Calc/app/build/intermediates/res/merged/release/drawable_fixedsupport.png.flat
3030
/media/berthold/Bertholds\ Zeug/NFSShare/MyCode/AndroidStudioProjects/MyApps/Beam-Calc/app/src/main/res/menu/menu_main.xml=/media/berthold/Bertholds Zeug/NFSShare/MyCode/AndroidStudioProjects/MyApps/Beam-Calc/app/build/intermediates/res/merged/release/menu_menu_main.xml.flat
3131
/media/berthold/Bertholds\ Zeug/NFSShare/MyCode/AndroidStudioProjects/MyApps/Beam-Calc/app/src/main/res/drawable/show_dim_off.png=/media/berthold/Bertholds Zeug/NFSShare/MyCode/AndroidStudioProjects/MyApps/Beam-Calc/app/build/intermediates/res/merged/release/drawable_show_dim_off.png.flat
32-
/media/berthold/Bertholds\ Zeug/NFSShare/MyCode/AndroidStudioProjects/MyApps/Beam-Calc/app/src/main/res/layout/activity_save_beam_drawing.xml=/media/berthold/Bertholds Zeug/NFSShare/MyCode/AndroidStudioProjects/MyApps/Beam-Calc/app/build/intermediates/res/merged/release/layout_activity_save_beam_drawing.xml.flat
3332
/media/berthold/Bertholds\ Zeug/NFSShare/MyCode/AndroidStudioProjects/MyApps/Beam-Calc/app/src/main/res/drawable/show_result_off.png=/media/berthold/Bertholds Zeug/NFSShare/MyCode/AndroidStudioProjects/MyApps/Beam-Calc/app/build/intermediates/res/merged/release/drawable_show_result_off.png.flat
33+
/media/berthold/Bertholds\ Zeug/NFSShare/MyCode/AndroidStudioProjects/MyApps/Beam-Calc/app/src/main/res/layout/activity_save_beam_drawing.xml=/media/berthold/Bertholds Zeug/NFSShare/MyCode/AndroidStudioProjects/MyApps/Beam-Calc/app/build/intermediates/res/merged/release/layout_activity_save_beam_drawing.xml.flat
3434
/media/berthold/Bertholds\ Zeug/NFSShare/MyCode/AndroidStudioProjects/MyApps/Beam-Calc/app/src/main/res/layout-land/activity_main.xml=/media/berthold/Bertholds Zeug/NFSShare/MyCode/AndroidStudioProjects/MyApps/Beam-Calc/app/build/intermediates/res/merged/release/layout-land_activity_main.xml.flat

app/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-af/values-af.xml

Lines changed: 0 additions & 32 deletions
This file was deleted.

app/build/intermediates/incremental/mergeReleaseResources/merged.dir/values-am/values-am.xml

Lines changed: 0 additions & 32 deletions
This file was deleted.

0 commit comments

Comments
 (0)