Log in Register Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

cody's Profile Picture

cody

4270 Files

632781 Views

Latest files of /cody/iCriptSnappie/flutter_portfolio/android

app/ cody/iCriptSnappie/flutter_portfolio/android/app/
2 Items
  • build.gradle.kts
  • src/
  • gradle/ cody/iCriptSnappie/flutter_portfolio/android/gradle/
    1 Items
  • wrapper/
  • gradle.properties cody/iCriptSnappie/flutter_portfolio/android/gradle.properties
    145 Views
    0 Comments
    Media file
    build.gradle.kts cody/iCriptSnappie/flutter_portfolio/android/build.gradle.kts
    110 Views
    0 Comments
    allprojects {
    repositories {
    google()
    mavenCentral()
    }
    }

    val newBuildDir: Directory = rootProject.layout.buildDirectory.dir("../../build").get()
    settings.gradle.kts cody/iCriptSnappie/flutter_portfolio/android/settings.gradle.kts
    117 Views
    0 Comments
    pluginManagement {
    val flutterSdkPath = run {
    val properties = java.util.Properties()
    file("local.properties").inputStream().use { properties.load(it) }
    val flutterSdkPath = properties.getProperty("flutter.sdk")
    require(flutterSdkPath != null) { "flutter.sdk not set in local.properties" }
    flutterSdkPath
    }