Skip to content

Commit

Permalink
Initial OpenFTC-app version
Browse files Browse the repository at this point in the history
  • Loading branch information
NoahAndrews committed Oct 16, 2017
1 parent 9f1e829 commit c0e392b
Show file tree
Hide file tree
Showing 1,668 changed files with 493,103 additions and 16 deletions.
2 changes: 2 additions & 0 deletions Blocks/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/build
/original/
38 changes: 38 additions & 0 deletions Blocks/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
apply plugin: 'com.android.library'

android {
compileSdkVersion 23
buildToolsVersion "25.0.3"


defaultConfig {
minSdkVersion 19
targetSdkVersion 19
versionCode 34
versionName "5.12"

testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"

}

buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}

}

repositories {
flatDir {
dirs '../libs'
}
}

dependencies {
compile project(':RobotCore')
compile project(':FtcCommon')
compile project(':Hardware')
compile project(':Inspection')
}
21 changes: 21 additions & 0 deletions Blocks/proguard-rules.pro
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Add project specific ProGuard rules here.
# You can control the set of applied configuration files using the
# proguardFiles setting in build.gradle.
#
# For more details, see
# http://developer.android.com/guide/developing/tools/proguard.html

# If your project uses WebView with JS, uncomment the following
# and specify the fully qualified class name to the JavaScript interface
# class:
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
# public *;
#}

# Uncomment this to preserve the line number information for
# debugging stack traces.
#-keepattributes SourceFile,LineNumberTable

# If you keep the line number information, uncomment this to
# hide the original source file name.
#-renamesourcefileattribute SourceFile
35 changes: 35 additions & 0 deletions Blocks/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.google.blocks">

<uses-permission
android:name="android.permission.WRITE_EXTERNAL_STORAGE"
android:required="true" />
<uses-permission
android:name="android.permission.READ_EXTERNAL_STORAGE"
android:required="true" />

<application>
<activity
android:name="com.google.blocks.ftcrobotcontroller.ProgrammingModeActivity"
android:configChanges="orientation|screenSize"
android:label="@string/programming_mode_activity" >
</activity>
<activity
android:name="org.firstinspires.ftc.ftccommon.internal.ProgramAndManageActivity"
android:configChanges="orientation|screenSize"
android:label="@string/program_and_manage_activity" >
</activity>
<activity
android:name="com.google.blocks.ftcdriverstation.RemoteProgrammingModeActivity"
android:configChanges="orientation|screenSize"
android:label="@string/programming_mode_activity" >
</activity>
<activity
android:name="com.google.blocks.ftcrobotcontroller.BlocksActivity"
android:configChanges="orientation|screenSize"
android:label="@string/blocks_activity" >
</activity>
</application>

</manifest>
1 change: 1 addition & 0 deletions Blocks/src/main/assets/CzechWolf
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
AQ1XFLf/////AAAAATLMnUR8WUpRowWeEStjZohErycp93GYHgdcINFl21sDOvlJ5mPrLReKSg63njAnaMpwXq5j75wM0d3wApKNayiYj5V8H+zE3+npAgaTHoYD9PgFT0wJaoemBQTkTd6eVHSZ2VKD+UtY9hnRyFDHm78HhVE3Rq+ywa9U2dw7fsUNZt1gShrudbJpEd30xmW+8NQYgjAtJ5KMydktaW2tqNsOpz2bWcj9JPET9F+FwOGBsfRaUMU9n+vjghXjFB6mFdzI9zyDEgvQ8aVabFV/1cPz8tWbYs0fUR2p2gY193FG99DJVrFqf2Xp+cRNDvj36FlgFhRtX9eRUVJC0Y3L7CL6pnsLk4A3oHCXyEEBx90q
Loading

0 comments on commit c0e392b

Please sign in to comment.