Add new example for the AdMob extension
BIN
newIDE/app/resources/examples/admob/Button.png
Executable file
After Width: | Height: | Size: 184 B |
BIN
newIDE/app/resources/examples/admob/Grass.png
Executable file
After Width: | Height: | Size: 1.0 KiB |
1
newIDE/app/resources/examples/admob/README.md
Normal file
@@ -0,0 +1 @@
|
||||
Demonstrate how to show ads from AdMob in your game: banners, interstitial screen or reward videos. Also useful to test that your AdMob account is working properly.
|
4925
newIDE/app/resources/examples/admob/admob.json
Executable file
BIN
newIDE/app/resources/examples/admob/android-icon-144.png
Executable file
After Width: | Height: | Size: 10 KiB |
BIN
newIDE/app/resources/examples/admob/android-icon-192.png
Executable file
After Width: | Height: | Size: 15 KiB |
BIN
newIDE/app/resources/examples/admob/android-icon-36.png
Executable file
After Width: | Height: | Size: 1.5 KiB |
BIN
newIDE/app/resources/examples/admob/android-icon-48.png
Executable file
After Width: | Height: | Size: 2.2 KiB |
BIN
newIDE/app/resources/examples/admob/android-icon-72.png
Executable file
After Width: | Height: | Size: 3.8 KiB |
BIN
newIDE/app/resources/examples/admob/android-icon-96.png
Executable file
After Width: | Height: | Size: 5.8 KiB |
BIN
newIDE/app/resources/examples/admob/desktop-icon-512.png
Executable file
After Width: | Height: | Size: 61 KiB |
BIN
newIDE/app/resources/examples/admob/ios-icon-100.png
Executable file
After Width: | Height: | Size: 6.1 KiB |
BIN
newIDE/app/resources/examples/admob/ios-icon-114.png
Executable file
After Width: | Height: | Size: 7.4 KiB |
BIN
newIDE/app/resources/examples/admob/ios-icon-120.png
Executable file
After Width: | Height: | Size: 7.9 KiB |
BIN
newIDE/app/resources/examples/admob/ios-icon-144.png
Executable file
After Width: | Height: | Size: 10 KiB |
BIN
newIDE/app/resources/examples/admob/ios-icon-152.png
Executable file
After Width: | Height: | Size: 11 KiB |
BIN
newIDE/app/resources/examples/admob/ios-icon-167.png
Executable file
After Width: | Height: | Size: 12 KiB |
BIN
newIDE/app/resources/examples/admob/ios-icon-180.png
Executable file
After Width: | Height: | Size: 14 KiB |
BIN
newIDE/app/resources/examples/admob/ios-icon-29.png
Executable file
After Width: | Height: | Size: 1.2 KiB |
BIN
newIDE/app/resources/examples/admob/ios-icon-40.png
Executable file
After Width: | Height: | Size: 1.8 KiB |
BIN
newIDE/app/resources/examples/admob/ios-icon-50.png
Executable file
After Width: | Height: | Size: 2.3 KiB |
BIN
newIDE/app/resources/examples/admob/ios-icon-57.png
Executable file
After Width: | Height: | Size: 2.8 KiB |
BIN
newIDE/app/resources/examples/admob/ios-icon-58.png
Executable file
After Width: | Height: | Size: 2.9 KiB |
BIN
newIDE/app/resources/examples/admob/ios-icon-60.png
Executable file
After Width: | Height: | Size: 2.9 KiB |
BIN
newIDE/app/resources/examples/admob/ios-icon-72.png
Executable file
After Width: | Height: | Size: 3.8 KiB |
BIN
newIDE/app/resources/examples/admob/ios-icon-76.png
Executable file
After Width: | Height: | Size: 4.1 KiB |
BIN
newIDE/app/resources/examples/admob/ios-icon-80.png
Executable file
After Width: | Height: | Size: 4.4 KiB |
BIN
newIDE/app/resources/examples/admob/player.png
Executable file
After Width: | Height: | Size: 483 B |
@@ -9,6 +9,7 @@ import ExamplesList from './ExamplesList';
|
||||
// of the example generated. Finally, add it in this list, in BrowserProjectOpener.js
|
||||
// and upload the example resources online.
|
||||
const exampleNames = [
|
||||
'admob',
|
||||
'advanced-shape-based-painter',
|
||||
'animation-speed-scale',
|
||||
'asteroids',
|
||||
|
@@ -1,5 +1,42 @@
|
||||
// This file is generated by update-examples-extensions-usage-from-resources-examples.js script
|
||||
module.exports = {
|
||||
"admob": {
|
||||
"description": "Demonstrate how to show ads from AdMob in your game: banners, interstitial screen or reward videos. Also useful to test that your AdMob account is working properly.",
|
||||
"usedExtensions": [
|
||||
{
|
||||
"fullName": "Sprite",
|
||||
"name": "Sprite"
|
||||
},
|
||||
{
|
||||
"fullName": "Text object",
|
||||
"name": "TextObject"
|
||||
},
|
||||
{
|
||||
"fullName": "Scene management features",
|
||||
"name": "BuiltinScene"
|
||||
},
|
||||
{
|
||||
"fullName": "Base object",
|
||||
"name": "BuiltinObject"
|
||||
},
|
||||
{
|
||||
"fullName": "Mouse features",
|
||||
"name": "BuiltinMouse"
|
||||
},
|
||||
{
|
||||
"fullName": "Standard events",
|
||||
"name": "BuiltinCommonInstructions"
|
||||
},
|
||||
{
|
||||
"fullName": "Variable features",
|
||||
"name": "BuiltinVariables"
|
||||
},
|
||||
{
|
||||
"fullName": "AdMob",
|
||||
"name": "AdMob"
|
||||
}
|
||||
]
|
||||
},
|
||||
"advanced-shape-based-painter": {
|
||||
"description": "Show how to use Shape Painter objects to create a simple drawing app.",
|
||||
"usedExtensions": [
|
||||
|
@@ -1,3 +1,4 @@
|
||||
import admob from '../fixtures/admob/admob.json';
|
||||
import advancedShapeBasedPainter from '../fixtures/advanced-shape-based-painter/advanced-shape-based-painter.json';
|
||||
import animationSpeedScale from '../fixtures/animation-speed-scale/animation-speed-scale.json';
|
||||
import asteroids from '../fixtures/asteroids/asteroids.json';
|
||||
@@ -88,7 +89,9 @@ import zombieLaser from '../fixtures/zombie-laser/zombie-laser.json';
|
||||
|
||||
export default class BrowserProjectOpener {
|
||||
static readInternalFile(url) {
|
||||
if (url === 'example://advanced-shape-based-painter') {
|
||||
if (url === 'example://admob') {
|
||||
return Promise.resolve(admob);
|
||||
} else if (url === 'example://advanced-shape-based-painter') {
|
||||
return Promise.resolve(advancedShapeBasedPainter);
|
||||
} else if (url === 'example://animation-speed-scale') {
|
||||
return Promise.resolve(animationSpeedScale);
|
||||
|
4925
newIDE/app/src/fixtures/admob/admob.json
Normal file
@@ -7,6 +7,7 @@
|
||||
"revision": 0
|
||||
},
|
||||
"properties": {
|
||||
"adMobAppId": "",
|
||||
"folderProject": false,
|
||||
"linuxExecutableFilename": "",
|
||||
"macExecutableFilename": "",
|
||||
|
@@ -7,6 +7,7 @@
|
||||
"revision": 0
|
||||
},
|
||||
"properties": {
|
||||
"adMobAppId": "",
|
||||
"folderProject": false,
|
||||
"linuxExecutableFilename": "",
|
||||
"macExecutableFilename": "",
|
||||
|
@@ -7,6 +7,7 @@
|
||||
"revision": 0
|
||||
},
|
||||
"properties": {
|
||||
"adMobAppId": "",
|
||||
"folderProject": false,
|
||||
"linuxExecutableFilename": "",
|
||||
"macExecutableFilename": "",
|
||||
|
@@ -7,6 +7,7 @@
|
||||
"revision": 0
|
||||
},
|
||||
"properties": {
|
||||
"adMobAppId": "",
|
||||
"folderProject": false,
|
||||
"linuxExecutableFilename": "",
|
||||
"macExecutableFilename": "",
|
||||
|
@@ -7,6 +7,7 @@
|
||||
"revision": 0
|
||||
},
|
||||
"properties": {
|
||||
"adMobAppId": "",
|
||||
"folderProject": false,
|
||||
"linuxExecutableFilename": "",
|
||||
"macExecutableFilename": "",
|
||||
|
@@ -7,6 +7,7 @@
|
||||
"revision": 0
|
||||
},
|
||||
"properties": {
|
||||
"adMobAppId": "",
|
||||
"folderProject": false,
|
||||
"linuxExecutableFilename": "",
|
||||
"macExecutableFilename": "",
|
||||
|
@@ -7,6 +7,7 @@
|
||||
"revision": 0
|
||||
},
|
||||
"properties": {
|
||||
"adMobAppId": "",
|
||||
"folderProject": false,
|
||||
"linuxExecutableFilename": "",
|
||||
"macExecutableFilename": "",
|
||||
|
@@ -7,6 +7,7 @@
|
||||
"revision": 0
|
||||
},
|
||||
"properties": {
|
||||
"adMobAppId": "",
|
||||
"folderProject": false,
|
||||
"linuxExecutableFilename": "",
|
||||
"macExecutableFilename": "",
|
||||
|
@@ -7,6 +7,7 @@
|
||||
"revision": 0
|
||||
},
|
||||
"properties": {
|
||||
"adMobAppId": "",
|
||||
"folderProject": false,
|
||||
"linuxExecutableFilename": "",
|
||||
"macExecutableFilename": "",
|
||||
|
@@ -7,6 +7,7 @@
|
||||
"revision": 0
|
||||
},
|
||||
"properties": {
|
||||
"adMobAppId": "",
|
||||
"folderProject": false,
|
||||
"linuxExecutableFilename": "",
|
||||
"macExecutableFilename": "",
|
||||
|
@@ -7,6 +7,7 @@
|
||||
"revision": 0
|
||||
},
|
||||
"properties": {
|
||||
"adMobAppId": "",
|
||||
"folderProject": false,
|
||||
"linuxExecutableFilename": "",
|
||||
"macExecutableFilename": "",
|
||||
|
@@ -7,6 +7,7 @@
|
||||
"revision": 0
|
||||
},
|
||||
"properties": {
|
||||
"adMobAppId": "",
|
||||
"folderProject": false,
|
||||
"linuxExecutableFilename": "",
|
||||
"macExecutableFilename": "",
|
||||
|
@@ -7,6 +7,7 @@
|
||||
"revision": 0
|
||||
},
|
||||
"properties": {
|
||||
"adMobAppId": "",
|
||||
"folderProject": false,
|
||||
"linuxExecutableFilename": "",
|
||||
"macExecutableFilename": "",
|
||||
|
@@ -7,6 +7,7 @@
|
||||
"revision": 0
|
||||
},
|
||||
"properties": {
|
||||
"adMobAppId": "",
|
||||
"folderProject": false,
|
||||
"linuxExecutableFilename": "",
|
||||
"macExecutableFilename": "",
|
||||
|
@@ -7,6 +7,7 @@
|
||||
"revision": 0
|
||||
},
|
||||
"properties": {
|
||||
"adMobAppId": "",
|
||||
"folderProject": false,
|
||||
"linuxExecutableFilename": "",
|
||||
"macExecutableFilename": "",
|
||||
|
@@ -7,6 +7,7 @@
|
||||
"revision": 0
|
||||
},
|
||||
"properties": {
|
||||
"adMobAppId": "",
|
||||
"folderProject": false,
|
||||
"linuxExecutableFilename": "",
|
||||
"macExecutableFilename": "",
|
||||
|
@@ -7,6 +7,7 @@
|
||||
"revision": 0
|
||||
},
|
||||
"properties": {
|
||||
"adMobAppId": "",
|
||||
"folderProject": false,
|
||||
"linuxExecutableFilename": "",
|
||||
"macExecutableFilename": "",
|
||||
|
@@ -7,6 +7,7 @@
|
||||
"revision": 0
|
||||
},
|
||||
"properties": {
|
||||
"adMobAppId": "",
|
||||
"folderProject": false,
|
||||
"linuxExecutableFilename": "",
|
||||
"macExecutableFilename": "",
|
||||
|
@@ -7,6 +7,7 @@
|
||||
"revision": 0
|
||||
},
|
||||
"properties": {
|
||||
"adMobAppId": "",
|
||||
"folderProject": false,
|
||||
"linuxExecutableFilename": "",
|
||||
"macExecutableFilename": "",
|
||||
|
@@ -7,6 +7,7 @@
|
||||
"revision": 0
|
||||
},
|
||||
"properties": {
|
||||
"adMobAppId": "",
|
||||
"folderProject": false,
|
||||
"linuxExecutableFilename": "",
|
||||
"macExecutableFilename": "",
|
||||
|
@@ -7,6 +7,7 @@
|
||||
"revision": 0
|
||||
},
|
||||
"properties": {
|
||||
"adMobAppId": "",
|
||||
"folderProject": false,
|
||||
"linuxExecutableFilename": "",
|
||||
"macExecutableFilename": "",
|
||||
|
@@ -7,6 +7,7 @@
|
||||
"revision": 0
|
||||
},
|
||||
"properties": {
|
||||
"adMobAppId": "",
|
||||
"folderProject": false,
|
||||
"linuxExecutableFilename": "",
|
||||
"macExecutableFilename": "",
|
||||
|
@@ -7,6 +7,7 @@
|
||||
"revision": 0
|
||||
},
|
||||
"properties": {
|
||||
"adMobAppId": "",
|
||||
"folderProject": false,
|
||||
"linuxExecutableFilename": "",
|
||||
"macExecutableFilename": "",
|
||||
|
@@ -7,6 +7,7 @@
|
||||
"revision": 0
|
||||
},
|
||||
"properties": {
|
||||
"adMobAppId": "",
|
||||
"folderProject": false,
|
||||
"linuxExecutableFilename": "",
|
||||
"macExecutableFilename": "",
|
||||
|
@@ -7,6 +7,7 @@
|
||||
"revision": 0
|
||||
},
|
||||
"properties": {
|
||||
"adMobAppId": "",
|
||||
"folderProject": false,
|
||||
"linuxExecutableFilename": "",
|
||||
"macExecutableFilename": "",
|
||||
|
@@ -7,6 +7,7 @@
|
||||
"revision": 0
|
||||
},
|
||||
"properties": {
|
||||
"adMobAppId": "",
|
||||
"folderProject": false,
|
||||
"linuxExecutableFilename": "",
|
||||
"macExecutableFilename": "",
|
||||
|
@@ -7,6 +7,7 @@
|
||||
"revision": 0
|
||||
},
|
||||
"properties": {
|
||||
"adMobAppId": "",
|
||||
"folderProject": false,
|
||||
"linuxExecutableFilename": "",
|
||||
"macExecutableFilename": "",
|
||||
|
@@ -7,6 +7,7 @@
|
||||
"revision": 0
|
||||
},
|
||||
"properties": {
|
||||
"adMobAppId": "",
|
||||
"folderProject": false,
|
||||
"linuxExecutableFilename": "",
|
||||
"macExecutableFilename": "",
|
||||
|
@@ -7,6 +7,7 @@
|
||||
"revision": 0
|
||||
},
|
||||
"properties": {
|
||||
"adMobAppId": "",
|
||||
"folderProject": false,
|
||||
"linuxExecutableFilename": "",
|
||||
"macExecutableFilename": "",
|
||||
|
@@ -7,6 +7,7 @@
|
||||
"revision": 0
|
||||
},
|
||||
"properties": {
|
||||
"adMobAppId": "",
|
||||
"folderProject": false,
|
||||
"linuxExecutableFilename": "",
|
||||
"macExecutableFilename": "",
|
||||
|
@@ -7,6 +7,7 @@
|
||||
"revision": 0
|
||||
},
|
||||
"properties": {
|
||||
"adMobAppId": "",
|
||||
"folderProject": false,
|
||||
"linuxExecutableFilename": "",
|
||||
"macExecutableFilename": "",
|
||||
|
@@ -7,6 +7,7 @@
|
||||
"revision": 0
|
||||
},
|
||||
"properties": {
|
||||
"adMobAppId": "",
|
||||
"folderProject": false,
|
||||
"linuxExecutableFilename": "",
|
||||
"macExecutableFilename": "",
|
||||
|
@@ -7,6 +7,7 @@
|
||||
"revision": 0
|
||||
},
|
||||
"properties": {
|
||||
"adMobAppId": "",
|
||||
"folderProject": false,
|
||||
"linuxExecutableFilename": "",
|
||||
"macExecutableFilename": "",
|
||||
|
@@ -7,6 +7,7 @@
|
||||
"revision": 0
|
||||
},
|
||||
"properties": {
|
||||
"adMobAppId": "",
|
||||
"folderProject": false,
|
||||
"linuxExecutableFilename": "",
|
||||
"macExecutableFilename": "",
|
||||
|
@@ -7,6 +7,7 @@
|
||||
"revision": 0
|
||||
},
|
||||
"properties": {
|
||||
"adMobAppId": "",
|
||||
"folderProject": false,
|
||||
"linuxExecutableFilename": "",
|
||||
"macExecutableFilename": "",
|
||||
|
@@ -7,6 +7,7 @@
|
||||
"revision": 0
|
||||
},
|
||||
"properties": {
|
||||
"adMobAppId": "",
|
||||
"folderProject": false,
|
||||
"linuxExecutableFilename": "",
|
||||
"macExecutableFilename": "",
|
||||
|
@@ -7,6 +7,7 @@
|
||||
"revision": 0
|
||||
},
|
||||
"properties": {
|
||||
"adMobAppId": "",
|
||||
"folderProject": false,
|
||||
"linuxExecutableFilename": "",
|
||||
"macExecutableFilename": "",
|
||||
|
@@ -7,6 +7,7 @@
|
||||
"revision": 0
|
||||
},
|
||||
"properties": {
|
||||
"adMobAppId": "",
|
||||
"folderProject": false,
|
||||
"linuxExecutableFilename": "",
|
||||
"macExecutableFilename": "",
|
||||
|
@@ -7,6 +7,7 @@
|
||||
"revision": 0
|
||||
},
|
||||
"properties": {
|
||||
"adMobAppId": "",
|
||||
"folderProject": false,
|
||||
"linuxExecutableFilename": "",
|
||||
"macExecutableFilename": "",
|
||||
|
@@ -7,6 +7,7 @@
|
||||
"revision": 0
|
||||
},
|
||||
"properties": {
|
||||
"adMobAppId": "",
|
||||
"folderProject": false,
|
||||
"linuxExecutableFilename": "",
|
||||
"macExecutableFilename": "",
|
||||
|
@@ -7,6 +7,7 @@
|
||||
"revision": 0
|
||||
},
|
||||
"properties": {
|
||||
"adMobAppId": "",
|
||||
"folderProject": false,
|
||||
"linuxExecutableFilename": "",
|
||||
"macExecutableFilename": "",
|
||||
|
@@ -7,6 +7,7 @@
|
||||
"revision": 0
|
||||
},
|
||||
"properties": {
|
||||
"adMobAppId": "",
|
||||
"folderProject": false,
|
||||
"linuxExecutableFilename": "",
|
||||
"macExecutableFilename": "",
|
||||
|
@@ -7,6 +7,7 @@
|
||||
"revision": 0
|
||||
},
|
||||
"properties": {
|
||||
"adMobAppId": "",
|
||||
"folderProject": false,
|
||||
"linuxExecutableFilename": "",
|
||||
"macExecutableFilename": "",
|
||||
|
@@ -7,6 +7,7 @@
|
||||
"revision": 0
|
||||
},
|
||||
"properties": {
|
||||
"adMobAppId": "",
|
||||
"folderProject": false,
|
||||
"linuxExecutableFilename": "",
|
||||
"macExecutableFilename": "",
|
||||
|
@@ -7,6 +7,7 @@
|
||||
"revision": 0
|
||||
},
|
||||
"properties": {
|
||||
"adMobAppId": "",
|
||||
"folderProject": false,
|
||||
"linuxExecutableFilename": "",
|
||||
"macExecutableFilename": "",
|
||||
|
@@ -7,6 +7,7 @@
|
||||
"revision": 0
|
||||
},
|
||||
"properties": {
|
||||
"adMobAppId": "",
|
||||
"folderProject": false,
|
||||
"linuxExecutableFilename": "",
|
||||
"macExecutableFilename": "",
|
||||
|
@@ -7,6 +7,7 @@
|
||||
"revision": 0
|
||||
},
|
||||
"properties": {
|
||||
"adMobAppId": "",
|
||||
"folderProject": false,
|
||||
"linuxExecutableFilename": "",
|
||||
"macExecutableFilename": "",
|
||||
|
@@ -7,6 +7,7 @@
|
||||
"revision": 0
|
||||
},
|
||||
"properties": {
|
||||
"adMobAppId": "",
|
||||
"folderProject": false,
|
||||
"linuxExecutableFilename": "",
|
||||
"macExecutableFilename": "",
|
||||
|
@@ -7,6 +7,7 @@
|
||||
"revision": 0
|
||||
},
|
||||
"properties": {
|
||||
"adMobAppId": "",
|
||||
"folderProject": false,
|
||||
"linuxExecutableFilename": "",
|
||||
"macExecutableFilename": "",
|
||||
|
@@ -7,6 +7,7 @@
|
||||
"revision": 0
|
||||
},
|
||||
"properties": {
|
||||
"adMobAppId": "",
|
||||
"folderProject": false,
|
||||
"linuxExecutableFilename": "",
|
||||
"macExecutableFilename": "",
|
||||
|
@@ -7,6 +7,7 @@
|
||||
"revision": 0
|
||||
},
|
||||
"properties": {
|
||||
"adMobAppId": "",
|
||||
"folderProject": false,
|
||||
"linuxExecutableFilename": "",
|
||||
"macExecutableFilename": "",
|
||||
|
@@ -7,6 +7,7 @@
|
||||
"revision": 0
|
||||
},
|
||||
"properties": {
|
||||
"adMobAppId": "",
|
||||
"folderProject": false,
|
||||
"linuxExecutableFilename": "",
|
||||
"macExecutableFilename": "",
|
||||
|
@@ -7,6 +7,7 @@
|
||||
"revision": 0
|
||||
},
|
||||
"properties": {
|
||||
"adMobAppId": "",
|
||||
"folderProject": false,
|
||||
"linuxExecutableFilename": "",
|
||||
"macExecutableFilename": "",
|
||||
|
@@ -7,6 +7,7 @@
|
||||
"revision": 0
|
||||
},
|
||||
"properties": {
|
||||
"adMobAppId": "",
|
||||
"folderProject": false,
|
||||
"linuxExecutableFilename": "",
|
||||
"macExecutableFilename": "",
|
||||
|
@@ -7,6 +7,7 @@
|
||||
"revision": 0
|
||||
},
|
||||
"properties": {
|
||||
"adMobAppId": "",
|
||||
"folderProject": false,
|
||||
"linuxExecutableFilename": "",
|
||||
"macExecutableFilename": "",
|
||||
|
@@ -7,6 +7,7 @@
|
||||
"revision": 0
|
||||
},
|
||||
"properties": {
|
||||
"adMobAppId": "",
|
||||
"folderProject": false,
|
||||
"linuxExecutableFilename": "",
|
||||
"macExecutableFilename": "",
|
||||
|
@@ -7,6 +7,7 @@
|
||||
"revision": 0
|
||||
},
|
||||
"properties": {
|
||||
"adMobAppId": "",
|
||||
"folderProject": false,
|
||||
"linuxExecutableFilename": "",
|
||||
"macExecutableFilename": "",
|
||||
|
@@ -7,6 +7,7 @@
|
||||
"revision": 0
|
||||
},
|
||||
"properties": {
|
||||
"adMobAppId": "",
|
||||
"folderProject": false,
|
||||
"linuxExecutableFilename": "",
|
||||
"macExecutableFilename": "",
|
||||
|
@@ -7,6 +7,7 @@
|
||||
"revision": 0
|
||||
},
|
||||
"properties": {
|
||||
"adMobAppId": "",
|
||||
"folderProject": false,
|
||||
"linuxExecutableFilename": "",
|
||||
"macExecutableFilename": "",
|
||||
|
@@ -7,6 +7,7 @@
|
||||
"revision": 0
|
||||
},
|
||||
"properties": {
|
||||
"adMobAppId": "",
|
||||
"folderProject": false,
|
||||
"linuxExecutableFilename": "",
|
||||
"macExecutableFilename": "",
|
||||
|
@@ -7,6 +7,7 @@
|
||||
"revision": 0
|
||||
},
|
||||
"properties": {
|
||||
"adMobAppId": "",
|
||||
"folderProject": false,
|
||||
"linuxExecutableFilename": "",
|
||||
"macExecutableFilename": "",
|
||||
|
@@ -7,6 +7,7 @@
|
||||
"revision": 0
|
||||
},
|
||||
"properties": {
|
||||
"adMobAppId": "",
|
||||
"folderProject": false,
|
||||
"linuxExecutableFilename": "",
|
||||
"macExecutableFilename": "",
|
||||
|
@@ -7,6 +7,7 @@
|
||||
"revision": 0
|
||||
},
|
||||
"properties": {
|
||||
"adMobAppId": "",
|
||||
"folderProject": false,
|
||||
"linuxExecutableFilename": "",
|
||||
"macExecutableFilename": "",
|
||||
|
@@ -7,6 +7,7 @@
|
||||
"revision": 0
|
||||
},
|
||||
"properties": {
|
||||
"adMobAppId": "",
|
||||
"folderProject": false,
|
||||
"linuxExecutableFilename": "",
|
||||
"macExecutableFilename": "",
|
||||
|
@@ -7,6 +7,7 @@
|
||||
"revision": 0
|
||||
},
|
||||
"properties": {
|
||||
"adMobAppId": "",
|
||||
"folderProject": false,
|
||||
"linuxExecutableFilename": "",
|
||||
"macExecutableFilename": "",
|
||||
|
@@ -7,6 +7,7 @@
|
||||
"revision": 0
|
||||
},
|
||||
"properties": {
|
||||
"adMobAppId": "",
|
||||
"folderProject": false,
|
||||
"linuxExecutableFilename": "",
|
||||
"macExecutableFilename": "",
|
||||
|
@@ -7,6 +7,7 @@
|
||||
"revision": 0
|
||||
},
|
||||
"properties": {
|
||||
"adMobAppId": "",
|
||||
"folderProject": false,
|
||||
"linuxExecutableFilename": "",
|
||||
"macExecutableFilename": "",
|
||||
|
@@ -7,6 +7,7 @@
|
||||
"revision": 0
|
||||
},
|
||||
"properties": {
|
||||
"adMobAppId": "",
|
||||
"folderProject": false,
|
||||
"linuxExecutableFilename": "",
|
||||
"macExecutableFilename": "",
|
||||
|