Last active
December 10, 2019 13:32
-
-
Save rakshitsoni02/8963309e0a5efb47e0159df433d5b038 to your computer and use it in GitHub Desktop.
JetPack Compose SetUp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apply plugin: 'com.android.application' | |
apply plugin: 'kotlin-android' | |
apply plugin: 'kotlin-android-extensions' | |
android { | |
compileSdkVersion 29 | |
buildToolsVersion "29.0.2" | |
defaultConfig { | |
applicationId "com.rax.jetpackcompose" | |
minSdkVersion 23 | |
targetSdkVersion 29 | |
versionCode 1 | |
versionName "1.0" | |
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" | |
} | |
buildFeatures { | |
// Enables Jetpack Compose for this module | |
compose true | |
} | |
compileOptions { | |
sourceCompatibility JavaVersion.VERSION_1_8 | |
targetCompatibility JavaVersion.VERSION_1_8 | |
} | |
kotlinOptions { | |
jvmTarget = "1.8" | |
} | |
buildTypes { | |
release { | |
minifyEnabled false | |
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' | |
} | |
} | |
} | |
dependencies { | |
implementation fileTree(dir: 'libs', include: ['*.jar']) | |
implementation"org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" | |
implementation 'androidx.appcompat:appcompat:1.1.0' | |
implementation 'androidx.core:core-ktx:1.1.0' | |
implementation 'androidx.constraintlayout:constraintlayout:1.1.3' | |
implementation 'androidx.ui:ui-tooling:0.1.0-dev02' | |
implementation 'androidx.ui:ui-layout:0.1.0-dev02' | |
implementation 'androidx.ui:ui-material:0.1.0-dev02' | |
implementation 'com.google.android.material:material:1.0.0' | |
testImplementation 'junit:junit:4.12' | |
androidTestImplementation 'androidx.test.ext:junit:1.1.0' | |
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1' | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
buildscript { | |
ext.kotlin_version = '1.3.61' | |
repositories { | |
google() | |
jcenter() | |
maven { url 'https://dl.bintray.com/kotlin/kotlin-eap' } | |
} | |
dependencies { | |
classpath 'com.android.tools.build:gradle:4.0.0-alpha05' | |
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.3.61' | |
// NOTE: Do not place your application dependencies here; they belong | |
// in the individual module build.gradle files | |
} | |
} | |
allprojects { | |
repositories { | |
google() | |
jcenter() | |
maven { url 'https://dl.bintray.com/kotlin/kotlin-eap' } | |
} | |
} | |
task clean(type: Delete) { | |
delete rootProject.buildDir | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment