Skip to content
View DarkAngel35-commits's full-sized avatar

Block or report DarkAngel35-commits

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Hi there 👋

android { defaultConfig { manifestPlaceholders["hostName"] = "www.example.com" ... } buildTypes { getByName("release") { isMinifyEnabled = true proguardFiles(getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro") }

    getByName("debug") {
        applicationIdSuffix = ".debug"
        isDebuggable = true
    }

    /**
     * The `initWith` property lets you copy configurations from other build types,
     * then configure only the settings you want to change. This one copies the debug build
     * type, and then changes the manifest placeholder and application ID.
     */
    create("staging") {
        initWith(getByName("debug"))
        manifestPlaceholders["hostName"] = "internal.example.com"
        applicationIdSuffix = ".debugStaging"
    }
}

}

Popular repositories Loading

  1. Restaurant_Client Restaurant_Client Public

    Forked from anggaprytn/Restaurant_Client

    Frontend for Mobile Apps Restaurant Point of Sale - React Native

    JavaScript 1

  2. DarkAngel35-commits DarkAngel35-commits Public

    Config files for my GitHub profile.

  3. firebase-tools firebase-tools Public

    Forked from firebase/firebase-tools

    The Firebase Command Line Tools

    TypeScript

  4. jsonnet jsonnet Public

    Forked from google/jsonnet

    Jsonnet - The data templating language

    Jsonnet

  5. flutter_gpu_minimal flutter_gpu_minimal Public

    Forked from doodlezucc/flutter_gpu_minimal

    C++

  6. kotlin-playground kotlin-playground Public

    Forked from JetBrains/kotlin-playground

    Self-contained component to embed in websites for running Kotlin code

    JavaScript