Skip to content

Commit

Permalink
First commit
Browse files Browse the repository at this point in the history
  • Loading branch information
nutellarlz committed Dec 28, 2015
1 parent 5a01044 commit 99b220e
Show file tree
Hide file tree
Showing 236 changed files with 65,765 additions and 17 deletions.
17 changes: 0 additions & 17 deletions .gitattributes

This file was deleted.

52 changes: 52 additions & 0 deletions .gitignore
@@ -0,0 +1,52 @@
# Android Studio
*.jks
.DS_Store
/local.properties
/.idea/workspace.xml
/build

# External tool builders
.externalToolBuilders/

# CDT-specific
.cproject

# PDT-specific
.buildpath

# Windows image file caches
Thumbs.db
ehthumbs.db

# Local configuration file (sdk path, etc)
local.properties
gradle.properties
.directory

# Intellij project files
*.ipr
*.iws
.idea/

# Gradle
build
.gradle

# https://gist.github.com/AltNico/c581f370b3f88715876b
*.apk
*.ap_
*.dex
*.class
build.xml
.DS_Store
gen/
.gradle/
proguard/
out
.settings/
*.swp
*~

# Source:
# https://raw.githubusercontent.com/github/gitignore/master/Android.gitignore
# https://gitlab.com/fdroid/fdroidclient/raw/master/.gitignore
4 changes: 4 additions & 0 deletions .gitmodules
@@ -0,0 +1,4 @@
[submodule "external/netcipher"]
path = external/netcipher
url = https://github.com/guardianproject/NetCipher.git
branch = master
19 changes: 19 additions & 0 deletions .travis.yml
@@ -0,0 +1,19 @@
language: android
sudo: false
android:
components:
- build-tools-22.0.1
- build-tools-23.0.1
- android-23
- android-22
- extra-android-support
- extra-android-m2repository
licenses:
- 'android-sdk-license-.+'
- '.*intel.+'
before_install:
- chmod +x gradlew
- git submodule update --init --recursive
install:
- ./gradlew
script:
19 changes: 19 additions & 0 deletions JumpGo-Dev.iml
@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="UTF-8"?>
<module external.linked.project.id="JumpGo-Dev" external.linked.project.path="$MODULE_DIR$" external.root.project.path="$MODULE_DIR$" external.system.id="GRADLE" external.system.module.group="" external.system.module.version="unspecified" type="JAVA_MODULE" version="4">
<component name="FacetManager">
<facet type="java-gradle" name="Java-Gradle">
<configuration>
<option name="BUILD_FOLDER_PATH" value="$MODULE_DIR$/build" />
<option name="BUILDABLE" value="false" />
</configuration>
</facet>
</component>
<component name="NewModuleRootManager" LANGUAGE_LEVEL="JDK_1_7" inherit-compiler-output="true">
<exclude-output />
<content url="file://$MODULE_DIR$">
<excludeFolder url="file://$MODULE_DIR$/.gradle" />
</content>
<orderEntry type="jdk" jdkName="1.7" jdkType="JavaSDK" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>
10 changes: 10 additions & 0 deletions LICENSE
@@ -0,0 +1,10 @@
Copyright 2014 Anthony Restaino

Lightning Browser

This Source Code Form is subject to the terms of the
Mozilla Public License, v. 2.0. If a copy of the MPL
was not distributed with this file, You can obtain one at

http://mozilla.org/MPL/2.0/

19 changes: 19 additions & 0 deletions Lightning-Browser.iml
@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="UTF-8"?>
<module external.linked.project.id="Lightning-Browser" external.linked.project.path="$MODULE_DIR$" external.root.project.path="$MODULE_DIR$" external.system.id="GRADLE" external.system.module.group="" external.system.module.version="unspecified" type="JAVA_MODULE" version="4">
<component name="FacetManager">
<facet type="java-gradle" name="Java-Gradle">
<configuration>
<option name="BUILD_FOLDER_PATH" value="$MODULE_DIR$/build" />
<option name="BUILDABLE" value="false" />
</configuration>
</facet>
</component>
<component name="NewModuleRootManager" LANGUAGE_LEVEL="JDK_1_7" inherit-compiler-output="true">
<exclude-output />
<content url="file://$MODULE_DIR$">
<excludeFolder url="file://$MODULE_DIR$/.gradle" />
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>

0 comments on commit 99b220e

Please sign in to comment.