Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Team:Dashcash #3

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .expo-shared/assets.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"f9155ac790fd02fadcdeca367b02581c04a353aa6d5aa84409a59f6804c87acd": true,
"89ed26367cdb9b771858e026f2eb95bfdb90e5ae943e716575327ec325f39c44": true
}
14 changes: 14 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
node_modules/**/*
.expo/*
npm-debug.*
*.jks
*.p8
*.p12
*.key
*.mobileprovision
*.orig.*
web-build/
web-report/

# macOS
.DS_Store
16 changes: 16 additions & 0 deletions App.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import React from "react";
import { ApplicationProvider, IconRegistry } from "@ui-kitten/components";
import { EvaIconsPack } from "@ui-kitten/eva-icons";
import { mapping, light as lightTheme } from "@eva-design/eva";
import App from "./src/navigation/app";

const DashCash = () => (
<React.Fragment>
<IconRegistry icons={EvaIconsPack} />
<ApplicationProvider mapping={mapping} theme={lightTheme}>
<App />
</ApplicationProvider>
</React.Fragment>
);

export default DashCash;
39 changes: 39 additions & 0 deletions app.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
{
"expo": {
"name": "Dashcash",
"slug": "Dashcash",
"privacy": "public",
"sdkVersion": "36.0.0",
"platforms": ["ios", "android", "web"],
"version": "1.0.0",
"orientation": "portrait",
"icon": "./src/assets/Icon/icon.png",
"splash": {
"image": "./src/assets/Images/splash.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"updates": {
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": [
"src/assets/images/source/*",
"src/assets/icons/**/*.png",
"src/assets/fonts"
],
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.dashcash.dashcash"
},
"android": {
"package": "com.dashcash.dashcash",
"versionCode": 1,
"googleServicesFile": "./google-services.json"
},
"androidStatusBarColor": "#334393",
"androidStatusBar": {
"barStyle": "light-content",
"backgroundColor": "#334393"
}
}
}
6 changes: 6 additions & 0 deletions babel.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
module.exports = function(api) {
api.cache(true);
return {
presets: ['babel-preset-expo'],
};
};
10 changes: 10 additions & 0 deletions config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
export const firebaseConfig = {
apiKey: "AIzaSyAO-Z5f7aFrFKr3nOisILEkPp0qWI7kNp4",
authDomain: "iitsuraj-dashcash.firebaseapp.com",
databaseURL: "https://iitsuraj-dashcash.firebaseio.com",
projectId: "iitsuraj-dashcash",
storageBucket: "iitsuraj-dashcash.appspot.com",
messagingSenderId: "605484856938",
appId: "1:605484856938:web:8e8c2a8ddd5db62d64bc13",
measurementId: "G-Z81ZH543B7"
};
40 changes: 40 additions & 0 deletions google-services.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
{
"project_info": {
"project_number": "605484856938",
"firebase_url": "https://iitsuraj-dashcash.firebaseio.com",
"project_id": "iitsuraj-dashcash",
"storage_bucket": "iitsuraj-dashcash.appspot.com"
},
"client": [
{
"client_info": {
"mobilesdk_app_id": "1:605484856938:android:a3a2d751a00107e064bc13",
"android_client_info": {
"package_name": "com.dashcash.dashcash"
}
},
"oauth_client": [
{
"client_id": "605484856938-52je0i0u7li0u9b3m0cqjnuho3dmi00j.apps.googleusercontent.com",
"client_type": 3
}
],
"api_key": [
{
"current_key": "AIzaSyC5uh1CAW5YAcRsQLifiGohHR443L3Zsb0"
}
],
"services": {
"appinvite_service": {
"other_platform_oauth_client": [
{
"client_id": "605484856938-52je0i0u7li0u9b3m0cqjnuho3dmi00j.apps.googleusercontent.com",
"client_type": 3
}
]
}
}
}
],
"configuration_version": "1"
}
Binary file added my-release-key.keystore
Binary file not shown.
Loading