mirror of
https://github.com/jellyfin/jellyfin-android.git
synced 2026-09-03 05:10:27 +03:00
Small improvements in the dependency substitution code
This commit is contained in:
+4
-2
@@ -1,3 +1,5 @@
|
||||
import java.util.Properties
|
||||
|
||||
include(":app")
|
||||
|
||||
pluginManagement {
|
||||
@@ -11,8 +13,8 @@ pluginManagement {
|
||||
}
|
||||
|
||||
// Load properties from local.properties
|
||||
val properties = java.util.Properties().apply {
|
||||
val location = file("local.properties")
|
||||
val properties = Properties().apply {
|
||||
val location = File("local.properties")
|
||||
if (location.exists())
|
||||
load(location.inputStream())
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user