diff --git a/vds-app/App/components/Banner.js b/vds-app/App/components/Banner.js
index e1bcdfe..4afb78a 100644
--- a/vds-app/App/components/Banner.js
+++ b/vds-app/App/components/Banner.js
@@ -3,7 +3,7 @@ import { View, StyleSheet, StatusBar, Text, Dimensions } from "react-native"
import { colors, texts, credentials } from "./Variables"
import { BannerAd, BannerAdSize, TestIds } from 'react-native-google-mobile-ads'
-const adUnitId = __DEV__ ? TestIds.INTERSTITIAL : 'ca-app-pub-4145771316565790~1876877627'
+const adUnitId = __DEV__ ? TestIds.INTERSTITIAL : 'ca-app-pub-4145771316565790/1848957462'
const screen = Dimensions.get("window")
@@ -14,7 +14,7 @@ const styles = StyleSheet.create({
alignItems: "center",
justifyContent: "center",
marginTop: 20,
- height: 150,
+ height: 100,
width: "100%"
}
})
@@ -26,7 +26,7 @@ export const Banner = () => {
if(__DEV__) {
banner = DEV BANNER
} else {
- banner =
+ banner =
}
return (
diff --git a/vds-app/App/screens/Dictionary.js b/vds-app/App/screens/Dictionary.js
index f395154..1c588d1 100644
--- a/vds-app/App/screens/Dictionary.js
+++ b/vds-app/App/screens/Dictionary.js
@@ -20,12 +20,10 @@ const styles = StyleSheet.create({
justifyContent: "space-between",
paddingHorizontal: 20
},
-
buttonContainer: {
marginHorizontal: 0,
marginBottom: 20
},
-
text: {
color: colors.black,
fontSize: 16,
@@ -104,7 +102,7 @@ const styles = StyleSheet.create({
paddingHorizontal: 20,
paddingVertical: 10,
backgroundColor: colors.white,
- borderRadius: 10,
+ borderRadius: 5,
overflow: "hidden"
},
scrollView: {
diff --git a/vds-app/App/screens/Exam.js b/vds-app/App/screens/Exam.js
index bbc398f..27e5a01 100644
--- a/vds-app/App/screens/Exam.js
+++ b/vds-app/App/screens/Exam.js
@@ -111,8 +111,6 @@ class Exam extends React.Component {
AsyncStorage.getItem('setupData').then((value) => {
let setupData = JSON.parse(value)
-
- //console.log('handleBackButton setupData',setupData)
examScheme.forEach( (elem) => {
let currentSection = setupData.excludeDelta ? allQuestions[elem.section].filter(item => !item.delta) : allQuestions[elem.section]
for(let i=0; i {
@@ -243,6 +241,7 @@ class Exam extends React.Component {