Skip to content
This repository has been archived by the owner on Jul 21, 2022. It is now read-only.

Commit

Permalink
Merge pull request #2 from nickwph/nickwph-patch-1
Browse files Browse the repository at this point in the history
Trigger a build
  • Loading branch information
nickwph committed May 24, 2016
2 parents 11076f1 + e5ae05b commit 848c28e
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 5 deletions.
10 changes: 10 additions & 0 deletions .travis.yml
@@ -0,0 +1,10 @@
language: android

jdk:
- oraclejdk8

android:
components:
- tools-preview
- platform-tools-preview
- android-n
13 changes: 13 additions & 0 deletions circle.yml
@@ -0,0 +1,13 @@
machine:
java:
version: oraclejdk8

dependencies:
pre:
- echo y | android update sdk --no-ui --all --filter "tools-preview"
- echo y | android update sdk --no-ui --all --filter "platform-tools-preview"
- echo y | android update sdk --no-ui --all --filter "build-tools-24.0.0-preview"
- echo y | android update sdk --no-ui --all --filter "android-n"
- echo y | android update sdk --no-ui --all --filter "extra-android-support"
- echo y | android update sdk --no-ui --all --filter "extra-android-m2repository"
- echo y | android update sdk --no-ui --all --filter "extra-google-m2repository"
12 changes: 7 additions & 5 deletions readme.md
@@ -1,4 +1,6 @@
# Android Annotation Processor with Java8 and Jack&Jill
# Android Annotation Processor<b/>With Java8 and Jack&Jill [![CircleCI](https://circleci.com/gh/nickwph/annotation-processor-with-java8-jack-and-jill-android.svg?style=svg)](https://circleci.com/gh/nickwph/annotation-processor-with-java8-jack-and-jill-android)

Just a project to try out Android Annotation Processor in the new Java8 and Jack&Jill enviornment.

## Project Set Up

Expand Down Expand Up @@ -63,10 +65,10 @@ dependencies {

### 2016/5/23 - After Google IO

- Testing code using Java8 with the latest Android Annotation Processor tool from
'com.android.tools.build:gradle:2.2.0-alpha1'.
- Android N must be targeted and latest build tool ('24.0.0 rc4') must be used to work.
- Testing code using Java8 with Annotation Processor from
`com.android.tools.build:gradle:2.2.0-alpha1`.
- Android`N` must be targeted and latest build tool `24.0.0 rc4` must be used to work.
- It is working but generated code cannot be recognized by Android Studio.
- Extra library is needed to work -> 'com.google.guava:guava:18.0'.
- Extra library is needed to work -> `com.google.guava:guava:18.0`.
- Classes are generated in `build/intermediates/classes/` instead of `build/generated/source/`

0 comments on commit 848c28e

Please sign in to comment.