-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Fix] Undoing the migration to Kotlin DSL
- Loading branch information
Showing
1,128 changed files
with
7,859 additions
and
18,214 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
/* | ||
* | ||
* Copyright 2022 Jeluchu | ||
* | ||
*/ | ||
|
||
plugins { | ||
id 'com.android.application' | ||
id 'kotlin-android' | ||
} | ||
|
||
android { | ||
|
||
compileSdk 32 | ||
|
||
defaultConfig { | ||
applicationId "com.jeluchu.composer" | ||
minSdk 22 | ||
targetSdk 32 | ||
versionCode 1 | ||
versionName "1.0" | ||
|
||
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" | ||
} | ||
|
||
buildTypes { | ||
release { | ||
minifyEnabled false | ||
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' | ||
} | ||
} | ||
|
||
buildFeatures { | ||
compose = true | ||
} | ||
|
||
composeOptions { | ||
kotlinCompilerExtensionVersion = "1.2.0" | ||
} | ||
|
||
compileOptions { | ||
sourceCompatibility JavaVersion.VERSION_11 | ||
targetCompatibility JavaVersion.VERSION_11 | ||
} | ||
|
||
namespace 'com.jeluchu.composer' | ||
|
||
} | ||
|
||
dependencies { | ||
|
||
implementation project(':jchucomponents') | ||
implementation 'androidx.appcompat:appcompat:1.4.2' | ||
implementation 'com.google.android.material:material:1.6.1' | ||
implementation 'androidx.constraintlayout:constraintlayout:2.1.4' | ||
|
||
// JETPACK COMPOSE ----------------------------------------------------------------------------- | ||
implementation 'androidx.compose.ui:ui:1.1.1' | ||
implementation 'androidx.compose.material:material:1.1.1' | ||
implementation 'androidx.compose.ui:ui-tooling-preview:1.1.1' | ||
debugImplementation 'androidx.compose.ui:ui-tooling:1.1.1' | ||
implementation 'androidx.activity:activity-compose:1.5.0' | ||
implementation 'androidx.compose.material:material-icons-extended:1.1.1' | ||
implementation 'androidx.compose.foundation:foundation:1.1.1' | ||
implementation 'androidx.compose.foundation:foundation-layout:1.1.1' | ||
implementation 'androidx.compose.animation:animation:1.1.1' | ||
implementation 'androidx.compose.runtime:runtime:1.1.1' | ||
implementation 'androidx.compose.runtime:runtime-livedata:1.1.1' | ||
implementation 'androidx.constraintlayout:constraintlayout-compose:1.0.1' | ||
implementation 'androidx.navigation:navigation-compose:2.5.0' | ||
implementation 'androidx.activity:activity-compose:1.5.0' | ||
|
||
} |
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
/* | ||
* | ||
* Copyright 2022 Jeluchu | ||
* | ||
*/ | ||
|
||
buildscript { | ||
|
||
repositories { | ||
google() | ||
mavenCentral() | ||
} | ||
dependencies { | ||
classpath 'com.android.tools.build:gradle:7.2.1' | ||
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.7.0" | ||
classpath "org.jetbrains.dokka:dokka-gradle-plugin:1.7.0" | ||
} | ||
} | ||
|
||
allprojects { | ||
repositories { | ||
google() | ||
mavenCentral() | ||
maven { url 'https://jitpack.io' } | ||
} | ||
} | ||
|
||
task clean(type: Delete) { | ||
delete rootProject.buildDir | ||
} |
This file was deleted.
Oops, something went wrong.
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
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
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
Oops, something went wrong.