Sha256: 047191707f473ff368e4e2adebe9a70f01e07cd67fc3895e081406c2fafdc079

Contents?: true

Size: 670 Bytes

Versions: 3

Compression:

Stored size: 670 Bytes

Contents

apply plugin: 'com.android.application'

android {
    compileSdkVersion compile_sdk_version as int
    buildToolsVersion build_tools_version
    defaultConfig {
        applicationId "<%= sample_package_name %>"
        minSdkVersion min_sdk_version
        targetSdkVersion target_sdk_version
        versionCode 1
        versionName "1.0"
        jackOptions {
            enabled true
        }
    }
    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }
}

dependencies {
    compile "com.android.support:appcompat-v7:$support_lib_version"
    compile project(':<%= library_module%>')
}

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
robotkit-0.4.1 fixtures/{sample_module}/build.gradle.erb
robotkit-0.4.0 fixtures/{sample_module}/build.gradle.erb
robotkit-0.3.0 fixtures/{sample_module}/build.gradle.erb