-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #358 from synaptek/comp_refactor
refactoring of active components
- Loading branch information
Showing
451 changed files
with
59,430 additions
and
59,430 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,39 @@ | ||
apply plugin: 'com.android.library' | ||
|
||
android { | ||
compileSdkVersion rootProject.ext.rtCompileSdkVersion | ||
buildToolsVersion rootProject.ext.rtBuildToolsVersion | ||
|
||
defaultConfig { | ||
minSdkVersion rootProject.ext.rtMinSdkVersion | ||
targetSdkVersion rootProject.ext.rtTargetSdkVersion | ||
versionCode rootProject.ext.rtVersionCode | ||
versionName rootProject.ext.rtVersionName | ||
} | ||
|
||
buildTypes { | ||
release { | ||
minifyEnabled false | ||
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' | ||
} | ||
} | ||
|
||
lintOptions { | ||
// set to true to turn off analysis progress reporting by lint | ||
quiet true | ||
// if true, stop the gradle build if errors are found | ||
abortOnError false | ||
// if true, only report errors | ||
ignoreWarnings true | ||
} | ||
} | ||
|
||
dependencies { | ||
compile fileTree(include: ['*.jar'], dir: 'libs') | ||
testCompile 'junit:junit:4.12' | ||
compile 'com.android.support:appcompat-v7:25.2.0' | ||
compile 'com.android.support:percent:25.2.0' | ||
compile project(':util') | ||
compile project(':comp_logging') | ||
} | ||
apply plugin: 'com.android.library' | ||
|
||
android { | ||
compileSdkVersion rootProject.ext.rtCompileSdkVersion | ||
buildToolsVersion rootProject.ext.rtBuildToolsVersion | ||
|
||
defaultConfig { | ||
minSdkVersion rootProject.ext.rtMinSdkVersion | ||
targetSdkVersion rootProject.ext.rtTargetSdkVersion | ||
versionCode rootProject.ext.rtVersionCode | ||
versionName rootProject.ext.rtVersionName | ||
} | ||
|
||
buildTypes { | ||
release { | ||
minifyEnabled false | ||
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' | ||
} | ||
} | ||
|
||
lintOptions { | ||
// set to true to turn off analysis progress reporting by lint | ||
quiet true | ||
// if true, stop the gradle build if errors are found | ||
abortOnError false | ||
// if true, only report errors | ||
ignoreWarnings true | ||
} | ||
} | ||
|
||
dependencies { | ||
compile fileTree(include: ['*.jar'], dir: 'libs') | ||
compile 'com.android.support:appcompat-v7:25.2.0' | ||
compile 'com.android.support:percent:25.2.0' | ||
testCompile 'junit:junit:4.12' | ||
compile project(':util') | ||
compile project(':comp_scoreboard') | ||
compile project(':comp_logging') | ||
} |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
*.iml | ||
/local.properties | ||
.DS_Store | ||
/build | ||
/captures | ||
*.iml | ||
/local.properties | ||
.DS_Store | ||
/build | ||
/captures |
File renamed without changes.
File renamed without changes.
24 changes: 12 additions & 12 deletions
24
...va/cmu/xprize/banner/ApplicationTest.java → ...va/cmu/xprize/banner/ApplicationTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
package cmu.xprize.banner; | ||
|
||
import android.app.Application; | ||
import android.test.ApplicationTestCase; | ||
|
||
/** | ||
* <a href="http://d.android.com/tools/testing/testing_android.html">Testing Fundamentals</a> | ||
*/ | ||
public class ApplicationTest extends ApplicationTestCase<Application> { | ||
public ApplicationTest() { | ||
super(Application.class); | ||
} | ||
package cmu.xprize.banner; | ||
|
||
import android.app.Application; | ||
import android.test.ApplicationTestCase; | ||
|
||
/** | ||
* <a href="http://d.android.com/tools/testing/testing_android.html">Testing Fundamentals</a> | ||
*/ | ||
public class ApplicationTest extends ApplicationTestCase<Application> { | ||
public ApplicationTest() { | ||
super(Application.class); | ||
} | ||
} |
24 changes: 12 additions & 12 deletions
24
banner/src/main/AndroidManifest.xml → comp_banner/src/main/AndroidManifest.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | ||
package="cmu.xprize.banner"> | ||
|
||
<application | ||
android:allowBackup="true" | ||
android:label="@string/app_name" | ||
android:supportsRtl="true" | ||
android:theme="@style/AppTheme"> | ||
|
||
</application> | ||
|
||
</manifest> | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | ||
package="cmu.xprize.banner"> | ||
|
||
<application | ||
android:allowBackup="true" | ||
android:label="@string/app_name" | ||
android:supportsRtl="true" | ||
android:theme="@style/AppTheme"> | ||
|
||
</application> | ||
|
||
</manifest> |
6 changes: 3 additions & 3 deletions
6
banner/src/main/java/cmu/xprize/README.md → ...banner/src/main/java/cmu/xprize/README.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
This is the Banner Component for RoboTutor | ||
|
||
v0.0.1 | ||
This is the Banner Component for RoboTutor | ||
|
||
v0.0.1 | ||
Provides the Persona functionality and tutor controlbar funstions |
Oops, something went wrong.