diff --git a/app/build.gradle.kts b/app/build.gradle.kts index ea185fe..4a16652 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -11,8 +11,8 @@ android { applicationId = "rasel.lunar.launcher" minSdk = 26 targetSdk = 34 - versionCode = 34 - versionName = "2.7.2" + versionCode = 35 + versionName = "2.8" } buildTypes { diff --git a/app/src/main/kotlin/rasel/lunar/launcher/feeds/SystemStats.kt b/app/src/main/kotlin/rasel/lunar/launcher/feeds/SystemStats.kt index 47caa42..de4de5b 100644 --- a/app/src/main/kotlin/rasel/lunar/launcher/feeds/SystemStats.kt +++ b/app/src/main/kotlin/rasel/lunar/launcher/feeds/SystemStats.kt @@ -41,7 +41,6 @@ import java.io.BufferedReader import java.io.File import java.io.InputStreamReader import java.io.RandomAccessFile -import java.net.InetAddress import java.net.NetworkInterface import java.util.* import java.util.concurrent.TimeUnit @@ -274,10 +273,8 @@ internal class SystemStats { private fun getIpAddress(getIPv4: Boolean): String { try { - val interfaces: List = Collections.list(NetworkInterface.getNetworkInterfaces()) - for (interFace in interfaces) { - val addresses: List = Collections.list(interFace.inetAddresses) - for (address in addresses) { + for (interFace in Collections.list(NetworkInterface.getNetworkInterfaces())) { + for (address in Collections.list(interFace.inetAddresses)) { if (!address.isLoopbackAddress) { val addressStr = address.hostAddress val isIPv4 = addressStr!!.indexOf(':') < 0 diff --git a/fastlane/metadata/android/en-US/changelogs/32.txt b/fastlane/metadata/android/en-US/changelogs/32.txt deleted file mode 100644 index 6a9028c..0000000 --- a/fastlane/metadata/android/en-US/changelogs/32.txt +++ /dev/null @@ -1 +0,0 @@ -- UI fixes and improvements \ No newline at end of file diff --git a/fastlane/metadata/android/en-US/changelogs/35.txt b/fastlane/metadata/android/en-US/changelogs/35.txt new file mode 100644 index 0000000..8eb6240 --- /dev/null +++ b/fastlane/metadata/android/en-US/changelogs/35.txt @@ -0,0 +1,6 @@ +- add animated drawable for splash screen +- add apk share option in app menu +- change string button to icon button in app menu +- add different app drawer layout selection option +- add icon pack support +- string updates and improvements \ No newline at end of file