File tree Expand file tree Collapse file tree 1 file changed +0
-16
lines changed Expand file tree Collapse file tree 1 file changed +0
-16
lines changed Original file line number Diff line number Diff line change 14
14
* limitations under the License.
15
15
*/
16
16
import com.google.firebase.crashlytics.buildtools.gradle.CrashlyticsExtension
17
- import java.io.FileInputStream
18
- import java.util.Properties
19
17
20
18
plugins {
21
19
alias(libs.plugins.android.application)
@@ -29,20 +27,6 @@ plugins {
29
27
alias(libs.plugins.baselineprofile)
30
28
}
31
29
32
-
33
- // Function to load properties from a file (e.g., local.properties)
34
- fun loadProperties (filePath : String ): Properties {
35
- val properties = Properties ()
36
- try {
37
- FileInputStream (filePath).use { properties.load(it) }
38
- } catch (e: Exception ) {
39
- println (" Error loading properties: ${e.message} " )
40
- }
41
- return properties
42
- }
43
-
44
- val localProperties = loadProperties(rootProject.file(" local.properties" ).absolutePath)
45
-
46
30
android {
47
31
namespace = " com.android.developers.androidify"
48
32
compileSdk = libs.versions.compileSdk.get().toInt()
You can’t perform that action at this time.
0 commit comments