Skip to content

Commit 1cf6f0b

Browse files
committed
Release v2.5.0
1 parent 5e1cc80 commit 1cf6f0b

File tree

34 files changed

+75
-168
lines changed

34 files changed

+75
-168
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,22 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
66

77
## [Unreleased]
88

9+
## [2.5.0] - 2019-11-04
10+
### Added
11+
- Added compatibility with Android 10
12+
- Added support for Docker containers
13+
14+
### Fixed
15+
- Fixed URL of Ubuntu repository
16+
- Fixed Arch Linux deprecations
17+
18+
### Changed
19+
- Updated built-in busybox to v1.31.1
20+
21+
### Removed
22+
- Removed PRoot support
23+
- Removed installing symlink to /system/bin
24+
925
## [2.4.1] - 2019-10-20
1026
### Added
1127
- Added power trigger

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ The app is available for download in Google Play and GitHub.
1717

1818
## Features
1919

20-
- Supported distributions: Debian, Ubuntu, Kali Linux, Arch Linux, Fedora, CentOS, Slackware, Alpine Linux, other (from rootfs.tar)
20+
- Bootstrap: Alpine, Arch, CentOS, Debian, Fedora, Kali, Slackware, Ubuntu, Docker or from rootfs.tar
2121
- Installation type: image file, directory, disk partition, RAM
2222
- Supported file systems: ext2, ext3, ext4
2323
- Supported architectures: arm, arm64, x86, x86_64, emulation mode (ARM ~ x86)

app/build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
apply plugin: 'com.android.application'
22

33
android {
4-
compileSdkVersion 28
5-
buildToolsVersion '28.0.3'
4+
compileSdkVersion 29
5+
buildToolsVersion '29.0.2'
66

77
defaultConfig {
88
applicationId 'ru.meefik.linuxdeploy'
99
minSdkVersion 15
10-
targetSdkVersion 28
11-
versionCode 252
12-
versionName "2.4.1"
10+
targetSdkVersion 29
11+
versionCode 253
12+
versionName "2.5.0"
1313
}
1414
buildTypes {
1515
release {

app/src/main/AndroidManifest.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,9 @@
1616
android:name=".App"
1717
android:icon="@mipmap/ic_launcher"
1818
android:label="@string/app_name"
19-
android:supportsRtl="true"
2019
android:theme="@style/DarkTheme"
20+
android:supportsRtl="true"
21+
android:requestLegacyExternalStorage="true"
2122
android:usesCleartextTraffic="true"
2223
tools:ignore="GoogleAppIndexingWarning">
2324
<activity
0 Bytes
Binary file not shown.

app/src/main/assets/bin/arm/proot

-529 KB
Binary file not shown.
-1.6 MB
Binary file not shown.
-772 KB
Binary file not shown.
0 Bytes
Binary file not shown.

app/src/main/assets/bin/x86/proot

-930 KB
Binary file not shown.

0 commit comments

Comments
 (0)