-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
70 changed files
with
1,265 additions
and
18 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,51 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project version="4"> | ||
<component name="WizardSettings"> | ||
<option name="children"> | ||
<map> | ||
<entry key="imageWizard"> | ||
<value> | ||
<PersistentState /> | ||
</value> | ||
</entry> | ||
<entry key="vectorWizard"> | ||
<value> | ||
<PersistentState> | ||
<option name="children"> | ||
<map> | ||
<entry key="vectorAssetStep"> | ||
<value> | ||
<PersistentState> | ||
<option name="children"> | ||
<map> | ||
<entry key="clipartAsset"> | ||
<value> | ||
<PersistentState> | ||
<option name="values"> | ||
<map> | ||
<entry key="url" value="jar:file:/C:/Android/Android%20Studio/plugins/android/lib/android.jar!/images/material/icons/materialicons/qr_code/baseline_qr_code_24.xml" /> | ||
</map> | ||
</option> | ||
</PersistentState> | ||
</value> | ||
</entry> | ||
</map> | ||
</option> | ||
<option name="values"> | ||
<map> | ||
<entry key="outputName" value="ic_baseline_qr_code_24" /> | ||
<entry key="sourceFile" value="D:\AndroidStudioProjects\QRCodeScanner" /> | ||
</map> | ||
</option> | ||
</PersistentState> | ||
</value> | ||
</entry> | ||
</map> | ||
</option> | ||
</PersistentState> | ||
</value> | ||
</entry> | ||
</map> | ||
</option> | ||
</component> | ||
</project> |
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 |
---|---|---|
@@ -1,25 +1,42 @@ | ||
// Top-level build file where you can add configuration options common to all sub-projects/modules. | ||
buildscript { | ||
repositories { | ||
google() | ||
mavenCentral() | ||
} | ||
dependencies { | ||
classpath "com.android.tools.build:gradle:4.2.1" | ||
plugins { | ||
id 'com.android.application' | ||
// id 'android-extensions' | ||
} | ||
|
||
android { | ||
compileSdkVersion 30 | ||
buildToolsVersion "30.0.3" | ||
|
||
defaultConfig { | ||
applicationId "com.example.qrcodescanner" | ||
minSdkVersion 16 | ||
targetSdkVersion 30 | ||
versionCode 1 | ||
versionName "1.0" | ||
|
||
// NOTE: Do not place your application dependencies here; they belong | ||
// in the individual module build.gradle files | ||
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" | ||
} | ||
} | ||
|
||
allprojects { | ||
repositories { | ||
google() | ||
mavenCentral() | ||
jcenter() // Warning: this repository is going to shut down soon | ||
buildTypes { | ||
release { | ||
minifyEnabled false | ||
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' | ||
} | ||
} | ||
compileOptions { | ||
sourceCompatibility JavaVersion.VERSION_1_8 | ||
targetCompatibility JavaVersion.VERSION_1_8 | ||
} | ||
} | ||
|
||
task clean(type: Delete) { | ||
delete rootProject.buildDir | ||
dependencies { | ||
|
||
implementation 'androidx.appcompat:appcompat:1.3.0' | ||
implementation 'com.google.android.material:material:1.4.0' | ||
implementation 'androidx.constraintlayout:constraintlayout:2.0.4' | ||
implementation 'androidmads.library.qrgenearator:QRGenearator:1.0.3' | ||
implementation ('eu.livotov.labs.android:CAMView:2.0.1@aar'){transitive =true} | ||
testImplementation 'junit:junit:4.+' | ||
androidTestImplementation 'androidx.test.ext:junit:1.1.3' | ||
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0' | ||
} |
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,6 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project version="4"> | ||
<component name="CompilerConfiguration"> | ||
<bytecodeTargetLevel target="11" /> | ||
</component> | ||
</project> |
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,20 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project version="4"> | ||
<component name="GradleMigrationSettings" migrationVersion="1" /> | ||
<component name="GradleSettings"> | ||
<option name="linkedExternalProjectsSettings"> | ||
<GradleProjectSettings> | ||
<option name="testRunner" value="PLATFORM" /> | ||
<option name="distributionType" value="DEFAULT_WRAPPED" /> | ||
<option name="externalProjectPath" value="$PROJECT_DIR$" /> | ||
<option name="modules"> | ||
<set> | ||
<option value="$PROJECT_DIR$" /> | ||
<option value="$PROJECT_DIR$/app" /> | ||
</set> | ||
</option> | ||
<option name="resolveModulePerSourceSet" value="false" /> | ||
</GradleProjectSettings> | ||
</option> | ||
</component> | ||
</project> |
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 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project version="4"> | ||
<component name="RemoteRepositoriesConfiguration"> | ||
<remote-repository> | ||
<option name="id" value="central" /> | ||
<option name="name" value="Maven Central repository" /> | ||
<option name="url" value="https://repo1.maven.org/maven2" /> | ||
</remote-repository> | ||
<remote-repository> | ||
<option name="id" value="jboss.community" /> | ||
<option name="name" value="JBoss Community repository" /> | ||
<option name="url" value="https://repository.jboss.org/nexus/content/repositories/public/" /> | ||
</remote-repository> | ||
<remote-repository> | ||
<option name="id" value="MavenRepo" /> | ||
<option name="name" value="MavenRepo" /> | ||
<option name="url" value="https://repo.maven.apache.org/maven2/" /> | ||
</remote-repository> | ||
<remote-repository> | ||
<option name="id" value="BintrayJCenter" /> | ||
<option name="name" value="BintrayJCenter" /> | ||
<option name="url" value="https://jcenter.bintray.com/" /> | ||
</remote-repository> | ||
<remote-repository> | ||
<option name="id" value="Google" /> | ||
<option name="name" value="Google" /> | ||
<option name="url" value="https://dl.google.com/dl/android/maven2/" /> | ||
</remote-repository> | ||
</component> | ||
</project> |
15 changes: 15 additions & 0 deletions
15
libraries/Gradle__androidmads_library_qrgenearator_QRGenearator_1_0_3_aar.xml
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,15 @@ | ||
<component name="libraryTable"> | ||
<library name="Gradle: androidmads.library.qrgenearator:QRGenearator:1.0.3@aar"> | ||
<CLASSES> | ||
<root url="jar://$USER_HOME$/.gradle/caches/transforms-2/files-2.1/ac09b487e05fb69c43092e110bc39b3c/QRGenearator-1.0.3/jars/classes.jar!/" /> | ||
<root url="file://$USER_HOME$/.gradle/caches/transforms-2/files-2.1/ac09b487e05fb69c43092e110bc39b3c/QRGenearator-1.0.3/res" /> | ||
<root url="file://$USER_HOME$/.gradle/caches/transforms-2/files-2.1/ac09b487e05fb69c43092e110bc39b3c/QRGenearator-1.0.3/AndroidManifest.xml" /> | ||
</CLASSES> | ||
<JAVADOC> | ||
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/androidmads.library.qrgenearator/QRGenearator/1.0.3/6d5ba51325848da403567811ac218cd181ea8a84/QRGenearator-1.0.3-javadoc.jar!/" /> | ||
</JAVADOC> | ||
<SOURCES> | ||
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/androidmads.library.qrgenearator/QRGenearator/1.0.3/cb9dc3e8695bb722219985dce3f992ed32f876aa/QRGenearator-1.0.3-sources.jar!/" /> | ||
</SOURCES> | ||
</library> | ||
</component> |
16 changes: 16 additions & 0 deletions
16
libraries/Gradle__androidx_activity_activity_1_2_3_aar.xml
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,16 @@ | ||
<component name="libraryTable"> | ||
<library name="Gradle: androidx.activity:activity:1.2.3@aar"> | ||
<ANNOTATIONS> | ||
<root url="jar://$USER_HOME$/.gradle/caches/transforms-2/files-2.1/1a40e83ae200e4ae45fecb800d90d27b/activity-1.2.3/annotations.zip!/" /> | ||
</ANNOTATIONS> | ||
<CLASSES> | ||
<root url="jar://$USER_HOME$/.gradle/caches/transforms-2/files-2.1/1a40e83ae200e4ae45fecb800d90d27b/activity-1.2.3/jars/classes.jar!/" /> | ||
<root url="file://$USER_HOME$/.gradle/caches/transforms-2/files-2.1/1a40e83ae200e4ae45fecb800d90d27b/activity-1.2.3/res" /> | ||
<root url="file://$USER_HOME$/.gradle/caches/transforms-2/files-2.1/1a40e83ae200e4ae45fecb800d90d27b/activity-1.2.3/AndroidManifest.xml" /> | ||
</CLASSES> | ||
<JAVADOC /> | ||
<SOURCES> | ||
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/androidx.activity/activity/1.2.3/90a39fdeb6c8aa134518e9fc089fd2625a0329b0/activity-1.2.3-sources.jar!/" /> | ||
</SOURCES> | ||
</library> | ||
</component> |
11 changes: 11 additions & 0 deletions
11
libraries/Gradle__androidx_annotation_annotation_1_2_0.xml
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,11 @@ | ||
<component name="libraryTable"> | ||
<library name="Gradle: androidx.annotation:annotation:1.2.0"> | ||
<CLASSES> | ||
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/androidx.annotation/annotation/1.2.0/57136ff68ee784c6e19db34ed4a175338fadfde1/annotation-1.2.0.jar!/" /> | ||
</CLASSES> | ||
<JAVADOC /> | ||
<SOURCES> | ||
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/androidx.annotation/annotation/1.2.0/8945212022e5276658ab7864714ced3553ea724a/annotation-1.2.0-sources.jar!/" /> | ||
</SOURCES> | ||
</library> | ||
</component> |
13 changes: 13 additions & 0 deletions
13
libraries/Gradle__androidx_annotation_annotation_experimental_1_0_0_aar.xml
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,13 @@ | ||
<component name="libraryTable"> | ||
<library name="Gradle: androidx.annotation:annotation-experimental:1.0.0@aar"> | ||
<CLASSES> | ||
<root url="jar://$USER_HOME$/.gradle/caches/transforms-2/files-2.1/8d11d86b037c681c007c37e744e988c0/annotation-experimental-1.0.0/jars/classes.jar!/" /> | ||
<root url="file://$USER_HOME$/.gradle/caches/transforms-2/files-2.1/8d11d86b037c681c007c37e744e988c0/annotation-experimental-1.0.0/res" /> | ||
<root url="file://$USER_HOME$/.gradle/caches/transforms-2/files-2.1/8d11d86b037c681c007c37e744e988c0/annotation-experimental-1.0.0/AndroidManifest.xml" /> | ||
</CLASSES> | ||
<JAVADOC /> | ||
<SOURCES> | ||
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/androidx.annotation/annotation-experimental/1.0.0/2408f6cb8f31ffabdd88e1365f82914c251e44dc/annotation-experimental-1.0.0-sources.jar!/" /> | ||
</SOURCES> | ||
</library> | ||
</component> |
16 changes: 16 additions & 0 deletions
16
libraries/Gradle__androidx_appcompat_appcompat_1_3_0_aar.xml
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,16 @@ | ||
<component name="libraryTable"> | ||
<library name="Gradle: androidx.appcompat:appcompat:1.3.0@aar"> | ||
<ANNOTATIONS> | ||
<root url="jar://$USER_HOME$/.gradle/caches/transforms-2/files-2.1/7160c6b9fdb2bc1e41d9bd715d01fdc2/appcompat-1.3.0/annotations.zip!/" /> | ||
</ANNOTATIONS> | ||
<CLASSES> | ||
<root url="jar://$USER_HOME$/.gradle/caches/transforms-2/files-2.1/7160c6b9fdb2bc1e41d9bd715d01fdc2/appcompat-1.3.0/jars/classes.jar!/" /> | ||
<root url="file://$USER_HOME$/.gradle/caches/transforms-2/files-2.1/7160c6b9fdb2bc1e41d9bd715d01fdc2/appcompat-1.3.0/res" /> | ||
<root url="file://$USER_HOME$/.gradle/caches/transforms-2/files-2.1/7160c6b9fdb2bc1e41d9bd715d01fdc2/appcompat-1.3.0/AndroidManifest.xml" /> | ||
</CLASSES> | ||
<JAVADOC /> | ||
<SOURCES> | ||
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/androidx.appcompat/appcompat/1.3.0/45a346a05e7ff27a01c59452379c5939cbb53c03/appcompat-1.3.0-sources.jar!/" /> | ||
</SOURCES> | ||
</library> | ||
</component> |
13 changes: 13 additions & 0 deletions
13
libraries/Gradle__androidx_appcompat_appcompat_resources_1_3_0_aar.xml
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,13 @@ | ||
<component name="libraryTable"> | ||
<library name="Gradle: androidx.appcompat:appcompat-resources:1.3.0@aar"> | ||
<CLASSES> | ||
<root url="jar://$USER_HOME$/.gradle/caches/transforms-2/files-2.1/3c963dba1791c82e03149b3b2719af6f/appcompat-resources-1.3.0/jars/classes.jar!/" /> | ||
<root url="file://$USER_HOME$/.gradle/caches/transforms-2/files-2.1/3c963dba1791c82e03149b3b2719af6f/appcompat-resources-1.3.0/res" /> | ||
<root url="file://$USER_HOME$/.gradle/caches/transforms-2/files-2.1/3c963dba1791c82e03149b3b2719af6f/appcompat-resources-1.3.0/AndroidManifest.xml" /> | ||
</CLASSES> | ||
<JAVADOC /> | ||
<SOURCES> | ||
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/androidx.appcompat/appcompat-resources/1.3.0/fa1169a9b404f7e905756330af6d13e27dcee50e/appcompat-resources-1.3.0-sources.jar!/" /> | ||
</SOURCES> | ||
</library> | ||
</component> |
11 changes: 11 additions & 0 deletions
11
libraries/Gradle__androidx_arch_core_core_common_2_1_0.xml
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,11 @@ | ||
<component name="libraryTable"> | ||
<library name="Gradle: androidx.arch.core:core-common:2.1.0"> | ||
<CLASSES> | ||
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/androidx.arch.core/core-common/2.1.0/b3152fc64428c9354344bd89848ecddc09b6f07e/core-common-2.1.0.jar!/" /> | ||
</CLASSES> | ||
<JAVADOC /> | ||
<SOURCES> | ||
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/androidx.arch.core/core-common/2.1.0/80ac2d7c8e6400ce2fbc663cd1a7e1cbef38c4b8/core-common-2.1.0-sources.jar!/" /> | ||
</SOURCES> | ||
</library> | ||
</component> |
13 changes: 13 additions & 0 deletions
13
libraries/Gradle__androidx_arch_core_core_runtime_2_0_0_aar.xml
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,13 @@ | ||
<component name="libraryTable"> | ||
<library name="Gradle: androidx.arch.core:core-runtime:2.0.0@aar"> | ||
<CLASSES> | ||
<root url="jar://$USER_HOME$/.gradle/caches/transforms-2/files-2.1/e8a9ba95fcf0cc98ab87a4d17d4050b7/core-runtime-2.0.0/jars/classes.jar!/" /> | ||
<root url="file://$USER_HOME$/.gradle/caches/transforms-2/files-2.1/e8a9ba95fcf0cc98ab87a4d17d4050b7/core-runtime-2.0.0/res" /> | ||
<root url="file://$USER_HOME$/.gradle/caches/transforms-2/files-2.1/e8a9ba95fcf0cc98ab87a4d17d4050b7/core-runtime-2.0.0/AndroidManifest.xml" /> | ||
</CLASSES> | ||
<JAVADOC /> | ||
<SOURCES> | ||
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/androidx.arch.core/core-runtime/2.0.0/bc41b287c95bc50a3cd27cb1b7cfb301805ba7f1/core-runtime-2.0.0-sources.jar!/" /> | ||
</SOURCES> | ||
</library> | ||
</component> |
13 changes: 13 additions & 0 deletions
13
libraries/Gradle__androidx_arch_core_core_runtime_2_1_0_aar.xml
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,13 @@ | ||
<component name="libraryTable"> | ||
<library name="Gradle: androidx.arch.core:core-runtime:2.1.0@aar"> | ||
<CLASSES> | ||
<root url="jar://$USER_HOME$/.gradle/caches/transforms-2/files-2.1/e07e114cb47d0c60a85ca2367f8a128b/core-runtime-2.1.0/jars/classes.jar!/" /> | ||
<root url="file://$USER_HOME$/.gradle/caches/transforms-2/files-2.1/e07e114cb47d0c60a85ca2367f8a128b/core-runtime-2.1.0/res" /> | ||
<root url="file://$USER_HOME$/.gradle/caches/transforms-2/files-2.1/e07e114cb47d0c60a85ca2367f8a128b/core-runtime-2.1.0/AndroidManifest.xml" /> | ||
</CLASSES> | ||
<JAVADOC /> | ||
<SOURCES> | ||
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/androidx.arch.core/core-runtime/2.1.0/f19886651c9946b39f83d8c184fd0e2ce9f43c16/core-runtime-2.1.0-sources.jar!/" /> | ||
</SOURCES> | ||
</library> | ||
</component> |
13 changes: 13 additions & 0 deletions
13
libraries/Gradle__androidx_cardview_cardview_1_0_0_aar.xml
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,13 @@ | ||
<component name="libraryTable"> | ||
<library name="Gradle: androidx.cardview:cardview:1.0.0@aar"> | ||
<CLASSES> | ||
<root url="jar://$USER_HOME$/.gradle/caches/transforms-2/files-2.1/2139d73c5146b0d9ccfa1f5b382f03a7/cardview-1.0.0/jars/classes.jar!/" /> | ||
<root url="file://$USER_HOME$/.gradle/caches/transforms-2/files-2.1/2139d73c5146b0d9ccfa1f5b382f03a7/cardview-1.0.0/res" /> | ||
<root url="file://$USER_HOME$/.gradle/caches/transforms-2/files-2.1/2139d73c5146b0d9ccfa1f5b382f03a7/cardview-1.0.0/AndroidManifest.xml" /> | ||
</CLASSES> | ||
<JAVADOC /> | ||
<SOURCES> | ||
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/androidx.cardview/cardview/1.0.0/c9f3ce7ca74ad2c978230f4094ba6804c5166f9c/cardview-1.0.0-sources.jar!/" /> | ||
</SOURCES> | ||
</library> | ||
</component> |
11 changes: 11 additions & 0 deletions
11
libraries/Gradle__androidx_collection_collection_1_1_0.xml
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,11 @@ | ||
<component name="libraryTable"> | ||
<library name="Gradle: androidx.collection:collection:1.1.0"> | ||
<CLASSES> | ||
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/androidx.collection/collection/1.1.0/1f27220b47669781457de0d600849a5de0e89909/collection-1.1.0.jar!/" /> | ||
</CLASSES> | ||
<JAVADOC /> | ||
<SOURCES> | ||
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/androidx.collection/collection/1.1.0/bae67b0019fbb38498198fcc2d0282a340b71c5b/collection-1.1.0-sources.jar!/" /> | ||
</SOURCES> | ||
</library> | ||
</component> |
11 changes: 11 additions & 0 deletions
11
libraries/Gradle__androidx_constraintlayout_constraintlayout_2_0_4_aar.xml
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,11 @@ | ||
<component name="libraryTable"> | ||
<library name="Gradle: androidx.constraintlayout:constraintlayout:2.0.4@aar"> | ||
<CLASSES> | ||
<root url="jar://$USER_HOME$/.gradle/caches/transforms-2/files-2.1/f05760a6ab320001c8b604d10d78ac7b/constraintlayout-2.0.4/jars/classes.jar!/" /> | ||
<root url="file://$USER_HOME$/.gradle/caches/transforms-2/files-2.1/f05760a6ab320001c8b604d10d78ac7b/constraintlayout-2.0.4/res" /> | ||
<root url="file://$USER_HOME$/.gradle/caches/transforms-2/files-2.1/f05760a6ab320001c8b604d10d78ac7b/constraintlayout-2.0.4/AndroidManifest.xml" /> | ||
</CLASSES> | ||
<JAVADOC /> | ||
<SOURCES /> | ||
</library> | ||
</component> |
9 changes: 9 additions & 0 deletions
9
libraries/Gradle__androidx_constraintlayout_constraintlayout_solver_2_0_4.xml
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,9 @@ | ||
<component name="libraryTable"> | ||
<library name="Gradle: androidx.constraintlayout:constraintlayout-solver:2.0.4"> | ||
<CLASSES> | ||
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/androidx.constraintlayout/constraintlayout-solver/2.0.4/1f001d7db280a89a6c26b26a66eb064bb6d5efeb/constraintlayout-solver-2.0.4.jar!/" /> | ||
</CLASSES> | ||
<JAVADOC /> | ||
<SOURCES /> | ||
</library> | ||
</component> |
16 changes: 16 additions & 0 deletions
16
libraries/Gradle__androidx_coordinatorlayout_coordinatorlayout_1_1_0_aar.xml
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,16 @@ | ||
<component name="libraryTable"> | ||
<library name="Gradle: androidx.coordinatorlayout:coordinatorlayout:1.1.0@aar"> | ||
<ANNOTATIONS> | ||
<root url="jar://$USER_HOME$/.gradle/caches/transforms-2/files-2.1/eb1af8f1493225341620214c24755800/coordinatorlayout-1.1.0/annotations.zip!/" /> | ||
</ANNOTATIONS> | ||
<CLASSES> | ||
<root url="jar://$USER_HOME$/.gradle/caches/transforms-2/files-2.1/eb1af8f1493225341620214c24755800/coordinatorlayout-1.1.0/jars/classes.jar!/" /> | ||
<root url="file://$USER_HOME$/.gradle/caches/transforms-2/files-2.1/eb1af8f1493225341620214c24755800/coordinatorlayout-1.1.0/res" /> | ||
<root url="file://$USER_HOME$/.gradle/caches/transforms-2/files-2.1/eb1af8f1493225341620214c24755800/coordinatorlayout-1.1.0/AndroidManifest.xml" /> | ||
</CLASSES> | ||
<JAVADOC /> | ||
<SOURCES> | ||
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/androidx.coordinatorlayout/coordinatorlayout/1.1.0/a15529ac349d76a872ae5ef42b84c320c456cd7f/coordinatorlayout-1.1.0-sources.jar!/" /> | ||
</SOURCES> | ||
</library> | ||
</component> |
Oops, something went wrong.