Skip to content

Commit 048df0f

Browse files
authored
Merge pull request #78 from ES2-UFPI/dev
Fazer release v0.2.0 #77
2 parents b5eb583 + 90f3abe commit 048df0f

File tree

128 files changed

+15406
-9705
lines changed

Some content is hidden

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

128 files changed

+15406
-9705
lines changed

eFix/.buckconfig .buckconfig

File renamed without changes.

eFix/.eslintrc.js .eslintrc.js

File renamed without changes.

eFix/.flowconfig .flowconfig

File renamed without changes.

eFix/.prettierrc.js .prettierrc.js

File renamed without changes.

.travis.yml

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
install:
2+
- nvm install 10
3+
- npm install -g "npm@$(jq -r '.engines.npm' package.json)"
4+
- npm ci
5+
matrix:
6+
include:
7+
- os: linux
8+
language: android
9+
jdk: oraclejdk8
10+
android:
11+
components:
12+
- build-tools-28.0.3
13+
- android-28
14+
before_install:
15+
- yes | sdkmanager "platforms;android-28"
16+
- yes | sdkmanager "build-tools;28.0.3"
17+
script:
18+
- "./android/gradlew assembleRelease -p android/"
File renamed without changes.

README.md

+41
File renamed without changes.

android/.project

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<projectDescription>
3+
<name>eFix</name>
4+
<comment>Project android created by Buildship.</comment>
5+
<projects>
6+
</projects>
7+
<buildSpec>
8+
<buildCommand>
9+
<name>org.eclipse.buildship.core.gradleprojectbuilder</name>
10+
<arguments>
11+
</arguments>
12+
</buildCommand>
13+
</buildSpec>
14+
<natures>
15+
<nature>org.eclipse.buildship.core.gradleprojectnature</nature>
16+
</natures>
17+
</projectDescription>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
connection.project.dir=
2+
eclipse.preferences.version=1

android/app/.classpath

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<classpath>
3+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8/"/>
4+
<classpathentry kind="con" path="org.eclipse.buildship.core.gradleclasspathcontainer"/>
5+
<classpathentry kind="output" path="bin/default"/>
6+
</classpath>

android/app/.project

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<projectDescription>
3+
<name>app</name>
4+
<comment>Project app created by Buildship.</comment>
5+
<projects>
6+
</projects>
7+
<buildSpec>
8+
<buildCommand>
9+
<name>org.eclipse.jdt.core.javabuilder</name>
10+
<arguments>
11+
</arguments>
12+
</buildCommand>
13+
<buildCommand>
14+
<name>org.eclipse.buildship.core.gradleprojectbuilder</name>
15+
<arguments>
16+
</arguments>
17+
</buildCommand>
18+
</buildSpec>
19+
<natures>
20+
<nature>org.eclipse.jdt.core.javanature</nature>
21+
<nature>org.eclipse.buildship.core.gradleprojectnature</nature>
22+
</natures>
23+
</projectDescription>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
connection.project.dir=..
2+
eclipse.preferences.version=1
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

android/app/src/main/assets/index.android.bundle

+923
Large diffs are not rendered by default.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

api/bin/server.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
'use strict'
22

3-
const app = require('../src/app');
3+
const app = require('../src/router_app');
44
const debug = require('debug')('eFix:server');
55
const http = require('http');
66

0 commit comments

Comments
 (0)