Skip to content

Commit

Permalink
Project gradle run issue solve
Browse files Browse the repository at this point in the history
  • Loading branch information
Kenil Balar committed Oct 5, 2022
1 parent 1c94cfe commit e5e3bb3
Show file tree
Hide file tree
Showing 13 changed files with 47 additions and 5 deletions.
3 changes: 2 additions & 1 deletion .idea/gradle.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

23 changes: 23 additions & 0 deletions .idea/inspectionProfiles/Project_Default.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,8 @@ dependencies {
debugImplementation "androidx.compose.ui:ui-tooling:$compose_version"
debugImplementation "androidx.compose.ui:ui-test-manifest:$compose_version"

implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.5.1'

// Local module
implementation project(':pixeleperfectdesign')
implementation project(':pixelperfectdesign')
}
7 changes: 5 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
buildscript {
ext {
compose_version = '1.1.0-beta01'
compose_version = '1.1.1'
// compose_version = '1.1.0-beta01'
}
}// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
id 'com.android.application' version '7.2.2' apply false
id 'com.android.library' version '7.2.2' apply false
id 'org.jetbrains.kotlin.android' version '1.7.10' apply false
// id 'org.jetbrains.kotlin.android' version '1.7.10' apply false
// id 'org.jetbrains.kotlin.android' version '1.5.31' apply false
id 'org.jetbrains.kotlin.android' version '1.6.10' apply false
}

task clean(type: Delete) {
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,17 @@ dependencies {

// Compose
implementation "androidx.compose.ui:ui:$compose_version"

// Compose
// implementation "androidx.compose.ui:ui:$compose_version"
//
// // For measuring the device width and height
// implementation "androidx.window:window:1.0.0"
// implementation 'androidx.test:runner:1.4.0'
// implementation 'androidx.test.ext:junit-ktx:1.1.3'
//
// // Local unit tests
// testImplementation "androidx.test:core:1.4.0"
// testImplementation "junit:junit:4.13.2"
// testImplementation "com.google.truth:truth:1.1.3"
}
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ dependencyResolutionManagement {
}
rootProject.name = "compose pixeleperfectdesign"
include ':app'
include ':pixeleperfectdesign'
include ':pixelperfectdesign'

0 comments on commit e5e3bb3

Please sign in to comment.