Skip to content

Commit 7e83d68

Browse files
RiaGohelRahulAiran
andcommitted
Initial commit for Game App
Game app for finding differences Co-authored-by: Rahul Airan <41298574+RahulAiran@users.noreply.github.com>
0 parents  commit 7e83d68

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+2730
-0
lines changed

Imagica_ria-master/.gitignore

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
*.iml
2+
.gradle
3+
/local.properties
4+
/.idea/caches
5+
/.idea/libraries
6+
/.idea/modules.xml
7+
/.idea/workspace.xml
8+
/.idea/navEditor.xml
9+
/.idea/assetWizardSettings.xml
10+
.DS_Store
11+
/build
12+
/captures
13+
.externalNativeBuild
14+
.cxx

Imagica_ria-master/app/.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/build

Imagica_ria-master/app/build.gradle

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
apply plugin: 'com.android.application'
2+
3+
android {
4+
compileSdkVersion 29
5+
buildToolsVersion "29.0.3"
6+
defaultConfig {
7+
applicationId "com.example.imagica"
8+
minSdkVersion 24
9+
targetSdkVersion 29
10+
versionCode 1
11+
versionName "1.0"
12+
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
13+
}
14+
buildTypes {
15+
release {
16+
minifyEnabled false
17+
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
18+
}
19+
}
20+
}
21+
22+
dependencies {
23+
implementation fileTree(dir: 'libs', include: ['*.jar'])
24+
implementation 'androidx.appcompat:appcompat:1.0.2'
25+
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
26+
testImplementation 'junit:junit:4.12'
27+
androidTestImplementation 'androidx.test.ext:junit:1.1.0'
28+
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1'
29+
implementation 'com.google.firebase:firebase-database:19.2.1'
30+
implementation 'com.google.firebase:firebase-auth:19.3.0'
31+
implementation 'com.google.firebase:firebase-storage:19.1.1'
32+
implementation 'com.squareup.picasso:picasso:2.71828'
33+
34+
}
35+
apply plugin: 'com.google.gms.google-services'
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
{
2+
"project_info": {
3+
"project_number": "993355869533",
4+
"firebase_url": "https://imagica-3c334.firebaseio.com",
5+
"project_id": "imagica-3c334",
6+
"storage_bucket": "imagica-3c334.appspot.com"
7+
},
8+
"client": [
9+
{
10+
"client_info": {
11+
"mobilesdk_app_id": "1:993355869533:android:4ce1e7a11a7da8ab7e4cb4",
12+
"android_client_info": {
13+
"package_name": "com.example.imagica"
14+
}
15+
},
16+
"oauth_client": [
17+
{
18+
"client_id": "993355869533-kdjbnfdhmf29k1ulc2lme11d4s8kpv2c.apps.googleusercontent.com",
19+
"client_type": 1,
20+
"android_info": {
21+
"package_name": "com.example.imagica",
22+
"certificate_hash": "f01492c4c0c62186de9ffe1a4b4d9104f796ec8b"
23+
}
24+
},
25+
{
26+
"client_id": "993355869533-2a9svt26qbik5bdjte5e67l5s5nivoci.apps.googleusercontent.com",
27+
"client_type": 3
28+
}
29+
],
30+
"api_key": [
31+
{
32+
"current_key": "AIzaSyDli2GHQ2BAZTt68xbY08Rnbj-5sNqEJdU"
33+
}
34+
],
35+
"services": {
36+
"appinvite_service": {
37+
"other_platform_oauth_client": [
38+
{
39+
"client_id": "993355869533-2a9svt26qbik5bdjte5e67l5s5nivoci.apps.googleusercontent.com",
40+
"client_type": 3
41+
}
42+
]
43+
}
44+
}
45+
}
46+
],
47+
"configuration_version": "1"
48+
}
+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Add project specific ProGuard rules here.
2+
# You can control the set of applied configuration files using the
3+
# proguardFiles setting in build.gradle.
4+
#
5+
# For more details, see
6+
# http://developer.android.com/guide/developing/tools/proguard.html
7+
8+
# If your project uses WebView with JS, uncomment the following
9+
# and specify the fully qualified class name to the JavaScript interface
10+
# class:
11+
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
12+
# public *;
13+
#}
14+
15+
# Uncomment this to preserve the line number information for
16+
# debugging stack traces.
17+
#-keepattributes SourceFile,LineNumberTable
18+
19+
# If you keep the line number information, uncomment this to
20+
# hide the original source file name.
21+
#-renamesourcefileattribute SourceFile
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
package com.example.imagica;
2+
3+
import android.content.Context;
4+
5+
import androidx.test.platform.app.InstrumentationRegistry;
6+
import androidx.test.ext.junit.runners.AndroidJUnit4;
7+
8+
import org.junit.Test;
9+
import org.junit.runner.RunWith;
10+
11+
import static org.junit.Assert.*;
12+
13+
/**
14+
* Instrumented test, which will execute on an Android device.
15+
*
16+
* @see <a href="http://d.android.com/tools/testing">Testing documentation</a>
17+
*/
18+
@RunWith(AndroidJUnit4.class)
19+
public class ExampleInstrumentedTest {
20+
@Test
21+
public void useAppContext() {
22+
// Context of the app under test.
23+
Context appContext = InstrumentationRegistry.getInstrumentation().getTargetContext();
24+
25+
assertEquals("com.example.imagica", appContext.getPackageName());
26+
}
27+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3+
package="com.example.imagica">
4+
5+
<uses-permission android:name="android.permission.INTERNET"/>
6+
7+
<application
8+
android:allowBackup="true"
9+
android:icon="@mipmap/ic_launcher"
10+
android:label="@string/app_name"
11+
android:roundIcon="@mipmap/ic_launcher_round"
12+
android:supportsRtl="true"
13+
android:theme="@style/AppTheme">
14+
<activity android:name=".MainActivity">
15+
<intent-filter>
16+
<action android:name="android.intent.action.MAIN" />
17+
18+
<category android:name="android.intent.category.LAUNCHER" />
19+
</intent-filter>
20+
</activity>
21+
<activity android:name=".InstructActivity">
22+
<intent-filter>
23+
<action android:name=".InstructActivity" />
24+
25+
<category android:name="android.intent.category.DEFAULT" />
26+
</intent-filter>
27+
</activity>
28+
<activity android:name=".PlayActivity">
29+
<intent-filter>
30+
<action android:name=".PlayActivity" />
31+
32+
<category android:name="android.intent.category.DEFAULT" />
33+
</intent-filter>
34+
</activity>
35+
<activity android:name=".Level1">
36+
<intent-filter>
37+
<action android:name=".Level1" />
38+
39+
<category android:name="android.intent.category.DEFAULT" />
40+
</intent-filter>
41+
</activity>
42+
<activity android:name=".Level2">
43+
<intent-filter>
44+
<action android:name=".Level2" />
45+
46+
<category android:name="android.intent.category.DEFAULT" />
47+
</intent-filter>
48+
</activity>
49+
<activity android:name=".Level3">
50+
<intent-filter>
51+
<action android:name=".Level3" />
52+
53+
<category android:name="android.intent.category.DEFAULT" />
54+
</intent-filter>
55+
</activity>
56+
<activity android:name=".Level4">
57+
<intent-filter>
58+
<action android:name=".Level4" />
59+
60+
<category android:name="android.intent.category.DEFAULT" />
61+
</intent-filter>
62+
</activity>
63+
<activity android:name=".Level5">
64+
<intent-filter>
65+
<action android:name=".Level5" />
66+
67+
<category android:name="android.intent.category.DEFAULT" />
68+
</intent-filter>
69+
</activity>
70+
<activity android:name=".Level6">
71+
<intent-filter>
72+
<action android:name=".Level6" />
73+
74+
<category android:name="android.intent.category.DEFAULT" />
75+
</intent-filter>
76+
</activity>
77+
</application>
78+
79+
</manifest>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
package com.example.imagica;
2+
3+
import android.os.Bundle;
4+
5+
import androidx.appcompat.app.AppCompatActivity;
6+
7+
public class InstructActivity extends AppCompatActivity {
8+
9+
@Override
10+
protected void onCreate(Bundle savedInstanceState) {
11+
super.onCreate(savedInstanceState);
12+
setContentView(R.layout.activity_instruct);
13+
}
14+
}

0 commit comments

Comments
 (0)