-
Notifications
You must be signed in to change notification settings - Fork 3
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 #15 from Fueled/kotlin
Initial V2 Release
- Loading branch information
Showing
57 changed files
with
1,850 additions
and
1,241 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
language: android | ||
jdk: oraclejdk8 | ||
|
||
android: | ||
components: | ||
- tools | ||
- platform-tools | ||
- build-tools-28.0.3 | ||
- android-28 | ||
|
||
# Additional components | ||
- extra-google-google_play_services | ||
- extra-google-m2repository | ||
- extra-android-m2repository | ||
|
||
script: ./gradlew clean spotlessCheck testDebugUnitTestCoverage | ||
|
||
sudo: false | ||
|
||
before_cache: | ||
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock | ||
- rm -fr $HOME/.gradle/caches/*/plugin-resolution/ | ||
|
||
cache: | ||
directories: | ||
- $HOME/.gradle/caches/ | ||
- $HOME/.gradle/wrapper/ | ||
- $HOME/.android/build-cache |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,22 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<manifest package="com.fueled.reclaim.samples" | ||
xmlns:android="http://schemas.android.com/apk/res/android"> | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | ||
xmlns:tools="http://schemas.android.com/tools" | ||
package="com.fueled.reclaim.samples"> | ||
|
||
<application | ||
android:allowBackup="true" | ||
android:allowBackup="false" | ||
android:icon="@mipmap/ic_launcher" | ||
android:label="@string/app_name" | ||
android:supportsRtl="true" | ||
android:theme="@style/AppTheme"> | ||
android:theme="@style/AppTheme" | ||
tools:ignore="GoogleAppIndexingWarning"> | ||
<activity android:name=".MainActivity"> | ||
<intent-filter> | ||
<action android:name="android.intent.action.MAIN"/> | ||
<action android:name="android.intent.action.MAIN" /> | ||
|
||
<category android:name="android.intent.category.LAUNCHER"/> | ||
<category android:name="android.intent.category.LAUNCHER" /> | ||
</intent-filter> | ||
</activity> | ||
<activity android:name=".hearder.HearderFooterActivity"/> | ||
<activity android:name=".handler.ItemPresenterActivity"/> | ||
</application> | ||
|
||
</manifest> | ||
</manifest> |
13 changes: 0 additions & 13 deletions
13
app/src/main/java/com/fueled/reclaim/samples/ExampleType.java
This file was deleted.
Oops, something went wrong.
76 changes: 0 additions & 76 deletions
76
app/src/main/java/com/fueled/reclaim/samples/MainActivity.java
This file was deleted.
Oops, something went wrong.
57 changes: 0 additions & 57 deletions
57
app/src/main/java/com/fueled/reclaim/samples/PlanetItem.java
This file was deleted.
Oops, something went wrong.
68 changes: 0 additions & 68 deletions
68
app/src/main/java/com/fueled/reclaim/samples/handler/HandledItem.java
This file was deleted.
Oops, something went wrong.
61 changes: 0 additions & 61 deletions
61
app/src/main/java/com/fueled/reclaim/samples/handler/ItemPresenterActivity.java
This file was deleted.
Oops, something went wrong.
13 changes: 0 additions & 13 deletions
13
app/src/main/java/com/fueled/reclaim/samples/handler/SamplePresenter.java
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.