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

Feat/#19 after quiz #22

Open
wants to merge 12 commits into
base: main
Choose a base branch
from
Binary file added .bash_profile.swp
Binary file not shown.
10 changes: 5 additions & 5 deletions App.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import React from 'react';
import {View} from 'react-native';
import QuizDetail from './src/pages/Quiz/QuizDetail';
import Welcome from './src/pages/Welcome/Welcome';
import Login from './src/pages/Login/Login';
import Signup from './src/pages/Signup/Signup';
import Login from './src/pages/Login/Login';
import AfterQuiz from './src/pages/Quiz/AfterQuiz';

const App = () => {
// return <Welcome />;
// return <Login />;
return <Signup />;
return <AfterQuiz />;
};

export default App;
4 changes: 2 additions & 2 deletions android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ buildscript {
ext {
buildToolsVersion = "30.0.2"
minSdkVersion = 21
compileSdkVersion = 34
targetSdkVersion = 34
compileSdkVersion = 30
targetSdkVersion = 30
ndkVersion = "28.0.12433566"
}
repositories {
Expand Down
7 changes: 7 additions & 0 deletions android/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-6.4.1-all.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
Empty file added git
Empty file.
10 changes: 5 additions & 5 deletions metro.config.js
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
const { getDefaultConfig } = require('metro-config');
const { getDefaultConfig } = require("metro-config");

module.exports = (async () => {
const {
resolver: { sourceExts, assetExts }
} = await getDefaultConfig();
return {
transformer: {
babelTransformerPath: require.resolve('react-native-svg-transformer')
babelTransformerPath: require.resolve("react-native-svg-transformer"),
},
resolver: {
assetExts: assetExts.filter(ext => ext !== 'svg'),
sourceExts: [...sourceExts, 'svg']
}
assetExts: assetExts.filter(ext => ext !== "svg"),
sourceExts: [...sourceExts, "js", "jsx", "ts", "tsx", "svg"]
},
};
})();
Loading