14 | * This class exists to assist in the auto-grading framework that we have developed.
15 | * Knowledge of this class and how it works will not be required in this course at all.
16 | */
17 | public class AutoGrader {
18 |
19 | @Test
20 | public void mainTest(){
21 | try {
22 | AndroidHandinUtil.generateHandinPackage("Asgn2", new File("./"),
23 | LogicUnitTests.class);
24 | }catch(Exception e){
25 | Log.d("AutoGrader :", e.getMessage());
26 | }
27 |
28 | }
29 | }
30 |
--------------------------------------------------------------------------------
/m3-assignment-shapes-skeleton/build.gradle:
--------------------------------------------------------------------------------
1 | // Top-level build file where you can add configuration options common to all sub-projects/modules.
2 |
3 |
4 | buildscript {
5 | repositories {
6 | jcenter()
7 | }
8 | dependencies {
9 | classpath 'com.android.tools.build:gradle:2.1.2'
10 |
11 | // NOTE: Do not place your application dependencies here; they belong
12 | // in the individual module build.gradle files
13 | }
14 | }
15 |
16 | allprojects {
17 | repositories {
18 | jcenter()
19 | }
20 | }
21 |
22 | task clean(type: Delete) {
23 | delete rootProject.buildDir
24 | }
25 |
26 |
27 | task _projectZip(type:Zip) {
28 | description = 'Makes a zip file of your project that can be properly shared with others.'
29 | from projectDir
30 | baseName = project.name
31 |
32 | include 'build.gradle'
33 | include 'gradle.properties'
34 | include 'gradlew'
35 | include 'gradlew.bat'
36 | include 'settings.gradle'
37 | include 'gradle/**'
38 |
39 | exclude 'build'
40 | exclude '.gradle'
41 | exclude '*.iml'
42 | exclude 'local.properties'
43 |
44 | include 'app/**'
45 | exclude 'app/*.iml'
46 | exclude 'app/build'
47 |
48 | include '.idea/**'
49 | exclude '.idea/workspace.xml'
50 | exclude '.idea/libraries'
51 |
52 | destinationDir file('zip')
53 | }
54 |
55 |
--------------------------------------------------------------------------------
/m3-assignment-shapes-skeleton/gradle.properties:
--------------------------------------------------------------------------------
1 | # Project-wide Gradle settings.
2 |
3 | # IDE (e.g. Android Studio) users:
4 | # Gradle settings configured through the IDE *will override*
5 | # any settings specified in this file.
6 |
7 | # For more details on how to configure your build environment visit
8 | # http://www.gradle.org/docs/current/userguide/build_environment.html
9 |
10 | # Specifies the JVM arguments used for the daemon process.
11 | # The setting is particularly useful for tweaking memory settings.
12 | # Default value: -Xmx10248m -XX:MaxPermSize=256m
13 | # org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
14 |
15 | # When configured, Gradle will run in incubating parallel mode.
16 | # This option should only be used with decoupled projects. More details, visit
17 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
18 | # org.gradle.parallel=true
--------------------------------------------------------------------------------
/m3-assignment-shapes-skeleton/gradle/wrapper/gradle-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/peterfayez/Coursera-Java-For-Android/81100970edf634f49cb87ea2994dfae6f684da25/m3-assignment-shapes-skeleton/gradle/wrapper/gradle-wrapper.jar
--------------------------------------------------------------------------------
/m3-assignment-shapes-skeleton/gradle/wrapper/gradle-wrapper.properties:
--------------------------------------------------------------------------------
1 | #Sun May 22 17:43:06 IST 2016
2 | distributionBase=GRADLE_USER_HOME
3 | distributionPath=wrapper/dists
4 | zipStoreBase=GRADLE_USER_HOME
5 | zipStorePath=wrapper/dists
6 | distributionUrl=https\://services.gradle.org/distributions/gradle-2.10-all.zip
7 |
--------------------------------------------------------------------------------
/m3-assignment-shapes-skeleton/local.properties:
--------------------------------------------------------------------------------
1 | ## This file is automatically generated by Android Studio.
2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED!
3 | #
4 | # This file must *NOT* be checked into Version Control Systems,
5 | # as it contains information specific to your local configuration.
6 | #
7 | # Location of the SDK. This is only used by Gradle.
8 | # For customization when using a Version Control System, please read the
9 | # header note.
10 | #Sun May 22 17:27:02 IST 2016
11 | ndk.dir=C\:\\Users\\admin\\AppData\\Local\\Android\\sdk1\\ndk-bundle
12 | sdk.dir=C\:\\Users\\admin\\AppData\\Local\\Android\\sdk1
13 |
--------------------------------------------------------------------------------
/m3-assignment-shapes-skeleton/m3-assignment-shapes-skeleton.iml:
--------------------------------------------------------------------------------
1 |
2 |
14 | * This class exists to assist in the auto-grading framework that we have developed.
15 | * Knowledge of this class and how it works will not be required in this course at all.
16 | */
17 | public class AutoGrader {
18 |
19 | @Test
20 | public void mainTest(){
21 | try {
22 | AndroidHandinUtil.generateHandinPackage("Asgn2", new File("./"),
23 | LogicUnitTests.class);
24 | }catch(Exception e){
25 | Log.d("AutoGrader :", e.getMessage());
26 | }
27 |
28 | }
29 | }
30 |
--------------------------------------------------------------------------------
/m4-assignment-diamond-sizes-skeleton/app/src/test/java/mooc/vandy/java4android/diamonds/logic/tools/TestingOutputInterface.java:
--------------------------------------------------------------------------------
1 | package mooc.vandy.java4android.diamonds.logic.tools;
2 |
3 | import mooc.vandy.java4android.diamonds.ui.OutputInterface;
4 |
5 | /**
6 | * IGNORE THIS CLASS.
7 | *
8 | * This class exists to assist in the auto-grading framework that we have developed.
9 | * Knowledge of this class and how it works will not be required in this course at all.
10 | */
11 | public class TestingOutputInterface implements OutputInterface{
12 |
13 | String output = "";
14 |
15 | public String getString(){
16 | return output;
17 | }
18 |
19 | @Override
20 | public void print(String text) {
21 | output += text;
22 | }
23 |
24 | @Override
25 | public void print(char _char) {
26 | output += _char;
27 | }
28 |
29 | @Override
30 | public void println(String text) {
31 | output += text + '\n';
32 | }
33 |
34 | @Override
35 | public void println(char _char) {
36 | output += _char + '\n';
37 | }
38 |
39 | @Override
40 | public void resetText() {
41 | output = "";
42 | }
43 |
44 | @Override
45 | public void log(String logtext) {
46 | // no op for now.
47 | }
48 | }
49 |
--------------------------------------------------------------------------------
/m4-assignment-diamond-sizes-skeleton/build.gradle:
--------------------------------------------------------------------------------
1 | // Top-level build file where you can add configuration options common to all sub-projects/modules.
2 |
3 | buildscript {
4 | repositories {
5 | jcenter()
6 | }
7 | dependencies {
8 | classpath 'com.android.tools.build:gradle:2.1.2'
9 |
10 | // NOTE: Do not place your application dependencies here; they belong
11 | // in the individual module build.gradle files
12 | }
13 | }
14 |
15 | allprojects {
16 | repositories {
17 | jcenter()
18 | }
19 | }
20 |
21 | task clean(type: Delete) {
22 | delete rootProject.buildDir
23 | }
24 |
25 | task _projectZip(type:Zip) {
26 | description = 'Makes a zip file of your project that can be properly shared with others.'
27 | from projectDir
28 | baseName = project.name
29 |
30 | include 'build.gradle'
31 | include 'gradle.properties'
32 | include 'gradlew'
33 | include 'gradlew.bat'
34 | include 'settings.gradle'
35 | include 'gradle/**'
36 |
37 | exclude 'build'
38 | exclude '.gradle'
39 | exclude '*.iml'
40 | exclude 'local.properties'
41 |
42 | include 'app/**'
43 | exclude 'app/*.iml'
44 | exclude 'app/build'
45 |
46 | include '.idea/**'
47 | exclude '.idea/workspace.xml'
48 | exclude '.idea/libraries'
49 |
50 | destinationDir file('zip')
51 | }
--------------------------------------------------------------------------------
/m4-assignment-diamond-sizes-skeleton/gradle.properties:
--------------------------------------------------------------------------------
1 | # Project-wide Gradle settings.
2 |
3 | # IDE (e.g. Android Studio) users:
4 | # Gradle settings configured through the IDE *will override*
5 | # any settings specified in this file.
6 |
7 | # For more details on how to configure your build environment visit
8 | # http://www.gradle.org/docs/current/userguide/build_environment.html
9 |
10 | # Specifies the JVM arguments used for the daemon process.
11 | # The setting is particularly useful for tweaking memory settings.
12 | # Default value: -Xmx10248m -XX:MaxPermSize=256m
13 | # org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
14 |
15 | # When configured, Gradle will run in incubating parallel mode.
16 | # This option should only be used with decoupled projects. More details, visit
17 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
18 | # org.gradle.parallel=true
--------------------------------------------------------------------------------
/m4-assignment-diamond-sizes-skeleton/gradle/wrapper/gradle-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/peterfayez/Coursera-Java-For-Android/81100970edf634f49cb87ea2994dfae6f684da25/m4-assignment-diamond-sizes-skeleton/gradle/wrapper/gradle-wrapper.jar
--------------------------------------------------------------------------------
/m4-assignment-diamond-sizes-skeleton/gradle/wrapper/gradle-wrapper.properties:
--------------------------------------------------------------------------------
1 | #Sun May 29 09:52:10 IST 2016
2 | distributionBase=GRADLE_USER_HOME
3 | distributionPath=wrapper/dists
4 | zipStoreBase=GRADLE_USER_HOME
5 | zipStorePath=wrapper/dists
6 | distributionUrl=https\://services.gradle.org/distributions/gradle-2.10-all.zip
7 |
--------------------------------------------------------------------------------
/m4-assignment-diamond-sizes-skeleton/local.properties:
--------------------------------------------------------------------------------
1 | ## This file is automatically generated by Android Studio.
2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED!
3 | #
4 | # This file must *NOT* be checked into Version Control Systems,
5 | # as it contains information specific to your local configuration.
6 | #
7 | # Location of the SDK. This is only used by Gradle.
8 | # For customization when using a Version Control System, please read the
9 | # header note.
10 | #Sun May 29 09:50:04 IST 2016
11 | ndk.dir=C\:\\Users\\admin\\AppData\\Local\\Android\\sdk1\\ndk-bundle
12 | sdk.dir=C\:\\Users\\admin\\AppData\\Local\\Android\\sdk1
13 |
--------------------------------------------------------------------------------
/m4-assignment-diamond-sizes-skeleton/m4-assignment-diamond-sizes-skeleton.iml:
--------------------------------------------------------------------------------
1 |
2 |
14 | * This class exists to assist in the auto-grading framework that we have developed.
15 | * Knowledge of this class and how it works will not be required in this course at all.
16 | */
17 | public class AutoGrader {
18 |
19 | @Test
20 | public void mainTest(){
21 | try {
22 | AndroidHandinUtil.generateHandinPackage("Asgn2", new File("./"),
23 | LogicUnitTests.class);
24 | }catch(Exception e){
25 | Log.d("AutoGrader :", e.getMessage());
26 | }
27 |
28 | }
29 | }
30 |
--------------------------------------------------------------------------------
/m5-assignment-birthday-probability-skeleton/build.gradle:
--------------------------------------------------------------------------------
1 | // Top-level build file where you can add configuration options common to all sub-projects/modules.
2 |
3 | buildscript {
4 | repositories {
5 | jcenter()
6 | }
7 | dependencies {
8 | classpath 'com.android.tools.build:gradle:2.1.2'
9 |
10 | // NOTE: Do not place your application dependencies here; they belong
11 | // in the individual module build.gradle files
12 | }
13 | }
14 |
15 | allprojects {
16 | repositories {
17 | jcenter()
18 | }
19 | }
20 |
21 | task clean(type: Delete) {
22 | delete rootProject.buildDir
23 | }
24 |
25 | task _projectZip(type:Zip) {
26 | description = 'Makes a zip file of your project that can be properly shared with others.'
27 | from projectDir
28 | baseName = project.name
29 |
30 | include 'build.gradle'
31 | include 'gradle.properties'
32 | include 'gradlew'
33 | include 'gradlew.bat'
34 | include 'settings.gradle'
35 | include 'gradle/**'
36 |
37 | exclude 'build'
38 | exclude '.gradle'
39 | exclude '*.iml'
40 | exclude 'local.properties'
41 |
42 | include 'app/**'
43 | exclude 'app/*.iml'
44 | exclude 'app/build'
45 |
46 | include '.idea/**'
47 | exclude '.idea/workspace.xml'
48 | exclude '.idea/libraries'
49 |
50 | destinationDir file('zip')
51 | }
--------------------------------------------------------------------------------
/m5-assignment-birthday-probability-skeleton/gradle.properties:
--------------------------------------------------------------------------------
1 | # Project-wide Gradle settings.
2 |
3 | # IDE (e.g. Android Studio) users:
4 | # Gradle settings configured through the IDE *will override*
5 | # any settings specified in this file.
6 |
7 | # For more details on how to configure your build environment visit
8 | # http://www.gradle.org/docs/current/userguide/build_environment.html
9 |
10 | # Specifies the JVM arguments used for the daemon process.
11 | # The setting is particularly useful for tweaking memory settings.
12 | # Default value: -Xmx10248m -XX:MaxPermSize=256m
13 | # org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
14 |
15 | # When configured, Gradle will run in incubating parallel mode.
16 | # This option should only be used with decoupled projects. More details, visit
17 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
18 | # org.gradle.parallel=true
--------------------------------------------------------------------------------
/m5-assignment-birthday-probability-skeleton/gradle/wrapper/gradle-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/peterfayez/Coursera-Java-For-Android/81100970edf634f49cb87ea2994dfae6f684da25/m5-assignment-birthday-probability-skeleton/gradle/wrapper/gradle-wrapper.jar
--------------------------------------------------------------------------------
/m5-assignment-birthday-probability-skeleton/gradle/wrapper/gradle-wrapper.properties:
--------------------------------------------------------------------------------
1 | #Mon Apr 11 17:09:35 CDT 2016
2 | distributionBase=GRADLE_USER_HOME
3 | distributionPath=wrapper/dists
4 | zipStoreBase=GRADLE_USER_HOME
5 | zipStorePath=wrapper/dists
6 | distributionUrl=https\://services.gradle.org/distributions/gradle-2.10-all.zip
7 |
--------------------------------------------------------------------------------
/m5-assignment-birthday-probability-skeleton/local.properties:
--------------------------------------------------------------------------------
1 | ## This file is automatically generated by Android Studio.
2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED!
3 | #
4 | # This file must *NOT* be checked into Version Control Systems,
5 | # as it contains information specific to your local configuration.
6 | #
7 | # Location of the SDK. This is only used by Gradle.
8 | # For customization when using a Version Control System, please read the
9 | # header note.
10 | #Sun May 29 22:12:21 IST 2016
11 | ndk.dir=C\:\\Users\\admin\\AppData\\Local\\Android\\sdk1\\ndk-bundle
12 | sdk.dir=C\:\\Users\\admin\\AppData\\Local\\Android\\sdk1
13 |
--------------------------------------------------------------------------------
/m5-assignment-birthday-probability-skeleton/m5-assignment-birthday-probability-skeleton.iml:
--------------------------------------------------------------------------------
1 |
2 |
14 | * This class exists to assist in the auto-grading framework that we have developed.
15 | * Knowledge of this class and how it works will not be required in this course at all.
16 | */
17 | public class AutoGrader {
18 | @Test
19 | public void mainTest(){
20 | try {
21 | AndroidHandinUtil.generateHandinPackage("Asgn2", new File("./build/results.txt"),
22 | AllUnitTests.class);
23 | }catch(Exception e){
24 | Log.d("AutoGrader :", e.getMessage());
25 | }
26 | }
27 | }
28 |
--------------------------------------------------------------------------------
/m6-assignment-gate-b-skeleton/gradle.properties:
--------------------------------------------------------------------------------
1 | # Project-wide Gradle settings.
2 |
3 | # IDE (e.g. Android Studio) users:
4 | # Gradle settings configured through the IDE *will override*
5 | # any settings specified in this file.
6 |
7 | # For more details on how to configure your build environment visit
8 | # http://www.gradle.org/docs/current/userguide/build_environment.html
9 |
10 | # Specifies the JVM arguments used for the daemon process.
11 | # The setting is particularly useful for tweaking memory settings.
12 | # Default value: -Xmx10248m -XX:MaxPermSize=256m
13 | # org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
14 |
15 | # When configured, Gradle will run in incubating parallel mode.
16 | # This option should only be used with decoupled projects. More details, visit
17 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
18 | # org.gradle.parallel=true
--------------------------------------------------------------------------------
/m6-assignment-gate-b-skeleton/gradle/wrapper/gradle-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/peterfayez/Coursera-Java-For-Android/81100970edf634f49cb87ea2994dfae6f684da25/m6-assignment-gate-b-skeleton/gradle/wrapper/gradle-wrapper.jar
--------------------------------------------------------------------------------
/m6-assignment-gate-b-skeleton/gradle/wrapper/gradle-wrapper.properties:
--------------------------------------------------------------------------------
1 | #Mon Apr 18 13:17:40 CDT 2016
2 | distributionBase=GRADLE_USER_HOME
3 | distributionPath=wrapper/dists
4 | zipStoreBase=GRADLE_USER_HOME
5 | zipStorePath=wrapper/dists
6 | distributionUrl=https\://services.gradle.org/distributions/gradle-2.10-all.zip
7 |
--------------------------------------------------------------------------------
/m6-assignment-gate-b-skeleton/local.properties:
--------------------------------------------------------------------------------
1 | ## This file is automatically generated by Android Studio.
2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED!
3 | #
4 | # This file must *NOT* be checked into Version Control Systems,
5 | # as it contains information specific to your local configuration.
6 | #
7 | # Location of the SDK. This is only used by Gradle.
8 | # For customization when using a Version Control System, please read the
9 | # header note.
10 | #Sat Jun 18 09:53:07 IST 2016
11 | ndk.dir=C\:\\Users\\admin\\AppData\\Local\\Android\\sdk1\\ndk-bundle
12 | sdk.dir=C\:\\Users\\admin\\AppData\\Local\\Android\\sdk1
13 |
--------------------------------------------------------------------------------
/m6-assignment-gate-b-skeleton/m6-assignment-gate-b-skeleton.iml:
--------------------------------------------------------------------------------
1 |
2 |
14 | * This class exists to assist in the auto-grading framework that we have developed.
15 | * Knowledge of this class and how it works will not be required in this course at all.
16 | */
17 | public class AutoGrader {
18 |
19 | @Test
20 | public void mainTest(){
21 | try {
22 | AndroidHandinUtil.generateHandinPackage("Asgn2", new File("./build/results.txt"),
23 | LogicUnitTests.class);
24 | }catch(Exception e){
25 | Log.d("AutoGrader :", e.getMessage());
26 | }
27 |
28 | }
29 | }
30 |
--------------------------------------------------------------------------------
/m7-assignment-buildings-skeleton/app/src/test/java/mooc/vandy/java4android/buildings/logic/tools/TestingOutputInterface.java:
--------------------------------------------------------------------------------
1 | package mooc.vandy.java4android.buildings.logic.tools;
2 |
3 |
4 | import mooc.vandy.java4android.buildings.ui.OutputInterface;
5 |
6 | /**
7 | * IGNORE THIS CLASS.
8 | *
9 | * This class exists to assist in the auto-grading framework that we have developed.
10 | * Knowledge of this class and how it works will not be required in this course at all.
11 | */
12 | public class TestingOutputInterface implements OutputInterface {
13 |
14 | String output = "";
15 |
16 | public String getOutput(){
17 | return output;
18 | }
19 |
20 | @Override
21 | public void print(String text) {
22 | output += text;
23 | }
24 |
25 | @Override
26 | public void print(char _char) {
27 | print("" + _char);
28 | }
29 |
30 | @Override
31 | public void println(String text) {
32 | output += text + '\n';
33 | }
34 |
35 | @Override
36 | public void println(char _char) {
37 | println("" + _char);
38 | }
39 |
40 | @Override
41 | public void resetText() {
42 | output = "";
43 | }
44 |
45 | @Override
46 | public void log(String logtext) {
47 | // no op for now.
48 | }
49 | }
50 |
--------------------------------------------------------------------------------
/m7-assignment-buildings-skeleton/gradle.properties:
--------------------------------------------------------------------------------
1 | # Project-wide Gradle settings.
2 |
3 | # IDE (e.g. Android Studio) users:
4 | # Gradle settings configured through the IDE *will override*
5 | # any settings specified in this file.
6 |
7 | # For more details on how to configure your build environment visit
8 | # http://www.gradle.org/docs/current/userguide/build_environment.html
9 |
10 | # Specifies the JVM arguments used for the daemon process.
11 | # The setting is particularly useful for tweaking memory settings.
12 | # Default value: -Xmx10248m -XX:MaxPermSize=256m
13 | # org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
14 |
15 | # When configured, Gradle will run in incubating parallel mode.
16 | # This option should only be used with decoupled projects. More details, visit
17 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
18 | # org.gradle.parallel=true
--------------------------------------------------------------------------------
/m7-assignment-buildings-skeleton/gradle/wrapper/gradle-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/peterfayez/Coursera-Java-For-Android/81100970edf634f49cb87ea2994dfae6f684da25/m7-assignment-buildings-skeleton/gradle/wrapper/gradle-wrapper.jar
--------------------------------------------------------------------------------
/m7-assignment-buildings-skeleton/gradle/wrapper/gradle-wrapper.properties:
--------------------------------------------------------------------------------
1 | #Fri Jul 08 00:37:27 IST 2016
2 | distributionBase=GRADLE_USER_HOME
3 | distributionPath=wrapper/dists
4 | zipStoreBase=GRADLE_USER_HOME
5 | zipStorePath=wrapper/dists
6 | distributionUrl=https\://services.gradle.org/distributions/gradle-2.10-all.zip
7 |
--------------------------------------------------------------------------------
/m7-assignment-buildings-skeleton/local.properties:
--------------------------------------------------------------------------------
1 | ## This file is automatically generated by Android Studio.
2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED!
3 | #
4 | # This file must *NOT* be checked into Version Control Systems,
5 | # as it contains information specific to your local configuration.
6 | #
7 | # Location of the SDK. This is only used by Gradle.
8 | # For customization when using a Version Control System, please read the
9 | # header note.
10 | #Fri Jul 08 00:26:50 IST 2016
11 | ndk.dir=C\:\\Users\\admin\\AppData\\Local\\Android\\sdk1\\ndk-bundle
12 | sdk.dir=C\:\\Users\\admin\\AppData\\Local\\Android\\sdk1
13 |
--------------------------------------------------------------------------------
/m7-assignment-buildings-skeleton/m7-assignment-buildings-skeleton.iml:
--------------------------------------------------------------------------------
1 |
2 |