Commit 6f28e336 authored by Generic Ec327 Student's avatar Generic Ec327 Student
Browse files

My public project

parent bef9f78d
Loading
Loading
Loading
Loading

.gitignore

0 → 100644
+15 −0
Original line number Diff line number Diff line
*.iml
.gradle
/local.properties
/.idea/caches
/.idea/libraries
/.idea/modules.xml
/.idea/workspace.xml
/.idea/navEditor.xml
/.idea/assetWizardSettings.xml
.DS_Store
/build
/captures
.externalNativeBuild
.cxx
local.properties

.idea/.gitignore

0 → 100644
+3 −0
Original line number Diff line number Diff line
# Default ignored files
/shelf/
/workspace.xml

.idea/.name

0 → 100644
+1 −0
Original line number Diff line number Diff line
My Application
 No newline at end of file

.idea/compiler.xml

0 → 100644
+6 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
  <component name="CompilerConfiguration">
    <bytecodeTargetLevel target="16" />
  </component>
</project>
 No newline at end of file

.idea/gradle.xml

0 → 100644
+20 −0
Original line number Diff line number Diff line
<?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="GRADLE" />
        <option name="distributionType" value="DEFAULT_WRAPPED" />
        <option name="externalProjectPath" value="$PROJECT_DIR$" />
        <option name="gradleJvm" value="openjdk-16" />
        <option name="modules">
          <set>
            <option value="$PROJECT_DIR$" />
            <option value="$PROJECT_DIR$/app" />
          </set>
        </option>
      </GradleProjectSettings>
    </option>
  </component>
</project>
 No newline at end of file
Loading