Full Code of hzsweers/RxPalette for AI

master 5f39add65288 cached
46 files
59.0 KB
15.8k tokens
39 symbols
1 requests
Download .txt
Repository: hzsweers/RxPalette
Branch: master
Commit: 5f39add65288
Files: 46
Total size: 59.0 KB

Directory structure:
gitextract_tv5tj5qv/

├── .buildscript/
│   ├── deploy_snapshot.sh
│   └── settings.xml
├── .gitignore
├── .travis.yml
├── CHANGELOG.md
├── LICENSE.txt
├── README.md
├── RELEASING.md
├── build.gradle
├── gradle/
│   ├── gradle-mvn-push.gradle
│   └── wrapper/
│       ├── gradle-wrapper.jar
│       └── gradle-wrapper.properties
├── gradle.properties
├── gradlew
├── gradlew.bat
├── rxpalette/
│   ├── build.gradle
│   ├── gradle.properties
│   └── src/
│       ├── main/
│       │   ├── AndroidManifest.xml
│       │   └── java/
│       │       └── io/
│       │           └── sweers/
│       │               └── rxpalette/
│       │                   └── RxPalette.java
│       └── test/
│           └── java/
│               └── io/
│                   └── sweers/
│                       └── rxpalette/
│                           └── RxPaletteTest.java
├── rxpalette-kotlin/
│   ├── build.gradle
│   ├── gradle.properties
│   └── src/
│       ├── main/
│       │   ├── AndroidManifest.xml
│       │   └── kotlin/
│       │       └── io/
│       │           └── sweers/
│       │               └── rxpalette/
│       │                   └── RxPalette.kt
│       └── test/
│           └── kotlin/
│               └── io/
│                   └── sweers/
│                       └── rxpalette/
│                           └── RxPaletteTest.kt
├── sample/
│   ├── .gitignore
│   ├── build.gradle
│   ├── proguard-rules.pro
│   └── src/
│       └── main/
│           ├── AndroidManifest.xml
│           ├── java/
│           │   └── io/
│           │       └── sweers/
│           │           └── rxpalette/
│           │               └── sample/
│           │                   ├── GlideConfiguration.java
│           │                   ├── MainActivity.java
│           │                   ├── RxPaletteSampleApplication.java
│           │                   └── api/
│           │                       ├── ImgurApi.java
│           │                       ├── ImgurResponse.java
│           │                       ├── model/
│           │                       │   ├── Album.java
│           │                       │   ├── Image.java
│           │                       │   └── Model.java
│           │                       └── service/
│           │                           └── AlbumService.java
│           └── res/
│               ├── layout/
│               │   ├── activity_main.xml
│               │   └── image_item.xml
│               ├── values/
│               │   ├── colors.xml
│               │   ├── dimens.xml
│               │   ├── strings.xml
│               │   └── styles.xml
│               └── values-w820dp/
│                   └── dimens.xml
└── settings.gradle

================================================
FILE CONTENTS
================================================

================================================
FILE: .buildscript/deploy_snapshot.sh
================================================
#!/bin/bash
#
# Deploy a jar, source jar, and javadoc jar to Sonatype's snapshot repo.
#
# Adapted from https://coderwall.com/p/9b_lfq and
# http://benlimmer.com/2013/12/26/automatically-publish-javadoc-to-gh-pages-with-travis-ci/

SLUG="hzsweers/RxPalette"
JDK="oraclejdk8"
BRANCH="master"

set -e

if [ "$TRAVIS_REPO_SLUG" != "$SLUG" ]; then
  echo "Skipping snapshot deployment: wrong repository. Expected '$SLUG' but was '$TRAVIS_REPO_SLUG'."
elif [ "$TRAVIS_JDK_VERSION" != "$JDK" ]; then
  echo "Skipping snapshot deployment: wrong JDK. Expected '$JDK' but was '$TRAVIS_JDK_VERSION'."
elif [ "$TRAVIS_PULL_REQUEST" != "false" ]; then
  echo "Skipping snapshot deployment: was pull request."
elif [ "$TRAVIS_BRANCH" != "$BRANCH" ]; then
  echo "Skipping snapshot deployment: wrong branch. Expected '$BRANCH' but was '$TRAVIS_BRANCH'."
else
  echo "Deploying snapshot..."
  ./gradlew clean uploadArchives
  echo "Snapshot deployed!"
fi


================================================
FILE: .buildscript/settings.xml
================================================
<settings>
    <servers>
        <server>
            <id>sonatype-nexus-snapshots</id>
            <username>${env.SONATYPE_NEXUS_USERNAME}</username>
            <password>${env.SONATYPE_NEXUS_PASSWORD}</password>
        </server>
    </servers>
</settings>


================================================
FILE: .gitignore
================================================
###OSX###

.DS_Store
.AppleDouble
.LSOverride

# Icon must ends with two \r.
Icon


# Thumbnails
._*

# Files that might appear on external disk
.Spotlight-V100
.Trashes


###Linux###

*~

# KDE directory preferences
.directory


###Android###

# Built application files
*.apk
*.ap_

# Files for ART and Dalvik VM
*.dex

# Java class files
*.class

# Generated files
bin/
gen/

# Gradle files
.gradle/
.gradletasknamecache
build/

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

# Proguard folder generated by Eclipse
proguard/

# Lint
lint-report.html
lint-report_files/
lint_result.txt

# Mobile Tools for Java (J2ME)
.mtj.tmp/

# Package Files #
*.war
*.ear

# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*


###IntelliJ###

*.iml
*.ipr
*.iws
.idea/


###Eclipse###

*.pydevproject
.metadata
tmp/
*.tmp
*.bak
*.swp
*~.nib
.settings/
.loadpath

# External tool builders
.externalToolBuilders/

# Locally stored "Eclipse launch configurations"
*.launch

# CDT-specific
.cproject

# PDT-specific
.buildpath

# sbteclipse plugin
.target

# TeXlipse plugin
.texlipse

# Misc
annotations
private.props

# [Maven] ========================
target/
pom.xml.tag
pom.xml.releaseBackup
pom.xml.versionsBackup
pom.xml.next
release.properties


================================================
FILE: .travis.yml
================================================
language: android

android:
  components:
    - tools
    - platform-tools
    - build-tools-23.0.2
    - android-23
    - extra-android-m2repository

jdk:
  - oraclejdk8

script:
  - ./gradlew ":$MODULE:build" ":$MODULE-kotlin:build"

after_success:
  - .buildscript/deploy_snapshot.sh

env:
  matrix:
    - MODULE=rxpalette
  global:
    - secure: "nrPJdE/UdDyVBIiTXD+lxKRenqaXgFomWlUGbina1Y5jNYzyUlXwBYC3blzrCSeJsTe7XvPr1iyQAkgdG+IG5HKIPExEvHZUS7mPaKIIEHOEQDlt/2H6Ge2ZH7VJx446pStiZMXj2DYIkoPskVZH7uZ8C85yUFEWZhQ5QZOdo30zUmb2HWsk5kjm/K+WSuF+vUBDuXbAuRHOUJ0j3tqTo0IJxKeIC1AtFfm97fQJK9fIuvc2kLhdge1BkcI+1P28jCedwidmGrcqF+g41PJGNAz61HEfi3HOBcpoS0qIiKYwvcEnBQNjRZ+gDrPUohVqWntJC/rZHmGu0NS3mhEeRXYvn36f8eOYNs392RXmiDUMFlWFtNUd3U0E6P5GobPJI9b9RbaK/lMiyzL5uvBIUNxzXo3i8hBShzlVk4Vk8MyNvMF1bVzpyABEOjMqiPxv9Gc8+ID77t1+iTOpvg6P15AKHUpMi4SsHVRZYAt5JTn0MATK3299/129KLEcvn7csSPhHDMINjNxlhFGgzNjj2Me19irFLbSuATy1NqI93gEgvN0w4PUGU0CeB2JJpkKnmFLj7C21KXCizleCtyovCXwyAe5ypvxy0zW9qssvZ+OdLS71XWy2K/7RLNfEYBP9Qq9xKj2pr361KWUF6aF+Rlj28AjcR6r1/TS1f7mg7A="
    - secure: "IWYmV1voMD/idGmeWTCpq+fps07mSomllOmmMKG/FwdLPu+HdDRLh4awa02J0bdI8bqTW1+MQC/u4IUKfMttp9rE7A+sob1EqmCTFJgpMAJ+VbKfBisnPVG5tVNV1LEkj9Hi8ide6EntOKPDduC9QFonN05xipt+t5slJrRyCo4sPVYByl1Hn1EC4NvZViie7JlB4r+cNaLVHL0JboqLvvbPgdslw6NuaoLYWy2yQr8JZRP3PVWj4jEQ7y+Ek+6V5KTQs62YbyXCETBgeWHm4L6oL7g7nMVWURq5isILZgI7GEHtD5oX+CjOLOgkQkPGyREOLsLDSHw/Ymd96bit2mXyZgSMKNq+Nz3U4kl67hHjMZubmRa3eAdVypM98YeCKfepUf6Wk0PUXPEZplXBG0E12MW5QKi0JkW15WZeVaBxBKMdZJYOyPiVGpMF6A0HxXFrgxRr3TgdB0Dis1hzVuvYQ3gm6WV24mki81FoYwj2XxsgUc+A2hsfuLjC2+1ceabebIdHniJPOjYlFnEdKHimQExCvjIxCpUJ8c0uZkAQlL9zy8hUc6Sx3AjIPsFABwczNxxgD6b5T9o0hOOPOXwHIcTK76xdjtuHnlfMet+cat/GdgOzVpdg2lrVnEXaXk9RbSooAgpaZ2InOZB3vzEqdEXOxCE790GI8EzKsNA="

branches:
  except:
    - gh-pages

notifications:
  email: false

sudo: false

cache:
  directories:
    - $HOME/.gradle


================================================
FILE: CHANGELOG.md
================================================
Change Log
==========

Version 0.3.0 *2016-2-5*
----------------------------

* Uses RxJava's new `fromCallable()` API under the hood now
* Dependency updates
  * RxJava 1.1.0
  * Support libraries 23.1.1
  * Kotlin 1.0.0-rc-1036

Note that there will probably be a patch release when Kotlin goes release 1.0.0. Doing the release
now because rc-1036 introduced some backward-incompatible class file changes.

Version 0.2.0 *2015-11-1*
----------------------------

* Removed `generateAsync` API. Just use normal scheduler selection with your RxJava chains.
* Kotlin extensions only support `Palette.Builder().asObservable` now. Function extensions can't be done as static 
functions on the `Palette` class itself since it has no `companion` object.
* Errors properly propagated via `onError` rather than at creation.
* `onComplete()` properly called when generation is complete.
* Full sample, unit tests, and CI

Version 0.1.0 *2015-10-27*
----------------------------

Initial release.


================================================
FILE: LICENSE.txt
================================================

                                 Apache License
                           Version 2.0, January 2004
                        http://www.apache.org/licenses/

   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION

   1. Definitions.

      "License" shall mean the terms and conditions for use, reproduction,
      and distribution as defined by Sections 1 through 9 of this document.

      "Licensor" shall mean the copyright owner or entity authorized by
      the copyright owner that is granting the License.

      "Legal Entity" shall mean the union of the acting entity and all
      other entities that control, are controlled by, or are under common
      control with that entity. For the purposes of this definition,
      "control" means (i) the power, direct or indirect, to cause the
      direction or management of such entity, whether by contract or
      otherwise, or (ii) ownership of fifty percent (50%) or more of the
      outstanding shares, or (iii) beneficial ownership of such entity.

      "You" (or "Your") shall mean an individual or Legal Entity
      exercising permissions granted by this License.

      "Source" form shall mean the preferred form for making modifications,
      including but not limited to software source code, documentation
      source, and configuration files.

      "Object" form shall mean any form resulting from mechanical
      transformation or translation of a Source form, including but
      not limited to compiled object code, generated documentation,
      and conversions to other media types.

      "Work" shall mean the work of authorship, whether in Source or
      Object form, made available under the License, as indicated by a
      copyright notice that is included in or attached to the work
      (an example is provided in the Appendix below).

      "Derivative Works" shall mean any work, whether in Source or Object
      form, that is based on (or derived from) the Work and for which the
      editorial revisions, annotations, elaborations, or other modifications
      represent, as a whole, an original work of authorship. For the purposes
      of this License, Derivative Works shall not include works that remain
      separable from, or merely link (or bind by name) to the interfaces of,
      the Work and Derivative Works thereof.

      "Contribution" shall mean any work of authorship, including
      the original version of the Work and any modifications or additions
      to that Work or Derivative Works thereof, that is intentionally
      submitted to Licensor for inclusion in the Work by the copyright owner
      or by an individual or Legal Entity authorized to submit on behalf of
      the copyright owner. For the purposes of this definition, "submitted"
      means any form of electronic, verbal, or written communication sent
      to the Licensor or its representatives, including but not limited to
      communication on electronic mailing lists, source code control systems,
      and issue tracking systems that are managed by, or on behalf of, the
      Licensor for the purpose of discussing and improving the Work, but
      excluding communication that is conspicuously marked or otherwise
      designated in writing by the copyright owner as "Not a Contribution."

      "Contributor" shall mean Licensor and any individual or Legal Entity
      on behalf of whom a Contribution has been received by Licensor and
      subsequently incorporated within the Work.

   2. Grant of Copyright License. Subject to the terms and conditions of
      this License, each Contributor hereby grants to You a perpetual,
      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
      copyright license to reproduce, prepare Derivative Works of,
      publicly display, publicly perform, sublicense, and distribute the
      Work and such Derivative Works in Source or Object form.

   3. Grant of Patent License. Subject to the terms and conditions of
      this License, each Contributor hereby grants to You a perpetual,
      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
      (except as stated in this section) patent license to make, have made,
      use, offer to sell, sell, import, and otherwise transfer the Work,
      where such license applies only to those patent claims licensable
      by such Contributor that are necessarily infringed by their
      Contribution(s) alone or by combination of their Contribution(s)
      with the Work to which such Contribution(s) was submitted. If You
      institute patent litigation against any entity (including a
      cross-claim or counterclaim in a lawsuit) alleging that the Work
      or a Contribution incorporated within the Work constitutes direct
      or contributory patent infringement, then any patent licenses
      granted to You under this License for that Work shall terminate
      as of the date such litigation is filed.

   4. Redistribution. You may reproduce and distribute copies of the
      Work or Derivative Works thereof in any medium, with or without
      modifications, and in Source or Object form, provided that You
      meet the following conditions:

      (a) You must give any other recipients of the Work or
          Derivative Works a copy of this License; and

      (b) You must cause any modified files to carry prominent notices
          stating that You changed the files; and

      (c) You must retain, in the Source form of any Derivative Works
          that You distribute, all copyright, patent, trademark, and
          attribution notices from the Source form of the Work,
          excluding those notices that do not pertain to any part of
          the Derivative Works; and

      (d) If the Work includes a "NOTICE" text file as part of its
          distribution, then any Derivative Works that You distribute must
          include a readable copy of the attribution notices contained
          within such NOTICE file, excluding those notices that do not
          pertain to any part of the Derivative Works, in at least one
          of the following places: within a NOTICE text file distributed
          as part of the Derivative Works; within the Source form or
          documentation, if provided along with the Derivative Works; or,
          within a display generated by the Derivative Works, if and
          wherever such third-party notices normally appear. The contents
          of the NOTICE file are for informational purposes only and
          do not modify the License. You may add Your own attribution
          notices within Derivative Works that You distribute, alongside
          or as an addendum to the NOTICE text from the Work, provided
          that such additional attribution notices cannot be construed
          as modifying the License.

      You may add Your own copyright statement to Your modifications and
      may provide additional or different license terms and conditions
      for use, reproduction, or distribution of Your modifications, or
      for any such Derivative Works as a whole, provided Your use,
      reproduction, and distribution of the Work otherwise complies with
      the conditions stated in this License.

   5. Submission of Contributions. Unless You explicitly state otherwise,
      any Contribution intentionally submitted for inclusion in the Work
      by You to the Licensor shall be under the terms and conditions of
      this License, without any additional terms or conditions.
      Notwithstanding the above, nothing herein shall supersede or modify
      the terms of any separate license agreement you may have executed
      with Licensor regarding such Contributions.

   6. Trademarks. This License does not grant permission to use the trade
      names, trademarks, service marks, or product names of the Licensor,
      except as required for reasonable and customary use in describing the
      origin of the Work and reproducing the content of the NOTICE file.

   7. Disclaimer of Warranty. Unless required by applicable law or
      agreed to in writing, Licensor provides the Work (and each
      Contributor provides its Contributions) on an "AS IS" BASIS,
      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
      implied, including, without limitation, any warranties or conditions
      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
      PARTICULAR PURPOSE. You are solely responsible for determining the
      appropriateness of using or redistributing the Work and assume any
      risks associated with Your exercise of permissions under this License.

   8. Limitation of Liability. In no event and under no legal theory,
      whether in tort (including negligence), contract, or otherwise,
      unless required by applicable law (such as deliberate and grossly
      negligent acts) or agreed to in writing, shall any Contributor be
      liable to You for damages, including any direct, indirect, special,
      incidental, or consequential damages of any character arising as a
      result of this License or out of the use or inability to use the
      Work (including but not limited to damages for loss of goodwill,
      work stoppage, computer failure or malfunction, or any and all
      other commercial damages or losses), even if such Contributor
      has been advised of the possibility of such damages.

   9. Accepting Warranty or Additional Liability. While redistributing
      the Work or Derivative Works thereof, You may choose to offer,
      and charge a fee for, acceptance of support, warranty, indemnity,
      or other liability obligations and/or rights consistent with this
      License. However, in accepting such obligations, You may act only
      on Your own behalf and on Your sole responsibility, not on behalf
      of any other Contributor, and only if You agree to indemnify,
      defend, and hold each Contributor harmless for any liability
      incurred by, or claims asserted against, such Contributor by reason
      of your accepting any such warranty or additional liability.

   END OF TERMS AND CONDITIONS

   APPENDIX: How to apply the Apache License to your work.

      To apply the Apache License to your work, attach the following
      boilerplate notice, with the fields enclosed by brackets "[]"
      replaced with your own identifying information. (Don't include
      the brackets!)  The text should be enclosed in the appropriate
      comment syntax for the file format. We also recommend that a
      file or class name and description of purpose be included on the
      same "printed page" as the copyright notice for easier
      identification within third-party archives.

   Copyright [yyyy] [name of copyright owner]

   Licensed under the Apache License, Version 2.0 (the "License");
   you may not use this file except in compliance with the License.
   You may obtain a copy of the License at

       http://www.apache.org/licenses/LICENSE-2.0

   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   See the License for the specific language governing permissions and
   limitations under the License.


================================================
FILE: README.md
================================================
RxPalette
=========

RxJava binding APIs for the [Palette][palette] Android library.

Usage
-----

Java:
```java
RxPalette.generate(bitmap)
        .subscribe({ palette ->
            // Do stuff
        });
        
RxPalette.generate(new Palette.Builder(bitmap).maximumColorCount(10))
        .subscribe({ palette ->
            // Do stuff
        });
```

Kotlin:
```kotlin
// Extensions directly applied Palette.Builder
Palette.Builder(bitmap)
        .maximumColorCount(10)
        .asObservable()
        .subscribe({ palette ->
            // Do stuff
        });
```

Download
--------

Java bindings:
```groovy
compile 'io.sweers.rxpalette:rxpalette:0.3.0'
```

Kotlin bindings:
```groovy
compile 'io.sweers.rxpalette:rxpalette-kotlin:0.3.0'
```

Snapshots of the development version are available in [Sonatype's snapshots repository][snapshots].

License
-------

    Copyright (C) 2015 Zac Sweers

    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at

       http://www.apache.org/licenses/LICENSE-2.0

    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.

 [palette]: https://developer.android.com/reference/android/support/v7/graphics/Palette.html
 [snapshots]: https://oss.sonatype.org/content/repositories/snapshots/


================================================
FILE: RELEASING.md
================================================
Releasing
========

 1. Change the version in `gradle.properties` to a non-SNAPSHOT version.
 2. Update the `CHANGELOG.md` for the impending release.
 3. Update the `README.md` with the new version.
 4. `git commit -am "Prepare for release X.Y.Z."` (where X.Y.Z is the new version)
 5. `git tag -a X.Y.Z -m "Version X.Y.Z"` (where X.Y.Z is the new version)
 6. `./gradlew clean uploadArchives`
 7. Update the `gradle.properties` to the next SNAPSHOT version.
 8. `git commit -am "Prepare next development version."`
 9. `git push && git push --tags`
 10. Visit [Sonatype Nexus](https://oss.sonatype.org/) and promote the artifact.


================================================
FILE: build.gradle
================================================
subprojects {
    buildscript {
        repositories {
            jcenter()
            mavenCentral()
        }
    }

    repositories {
        jcenter()
        mavenCentral()
    }

    group = GROUP
    version = VERSION_NAME

    // The default 'assemble' task only applies to normal variants. Add test variants as well.
    afterEvaluate {
        android.testVariants.all { variant ->
            tasks.getByName('assemble').dependsOn variant.assemble
        }

        // TODO Why does android studio hiccup on this?
//        tasks.withType(com.android.build.gradle.internal.tasks.AndroidTestTask.getClass()) { task ->
//            task.doFirst {
//                logging.level = LogLevel.INFO
//            }
//            task.doLast {
//                logging.level = LogLevel.LIFECYCLE
//            }
//        }
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

ext {
    androidPlugin = 'com.android.tools.build:gradle:2.2.2'
    minSdkVersion = 14
    targetSdkVersion = 23
    compileSdkVersion = 23
    buildToolsVersion = '23.0.2'

    ci = 'true'.equals(System.getenv('CI'))

    def kotlinVersion = '1.0.0'
    kotlinPlugin = "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
    kotlinStdlib = "org.jetbrains.kotlin:kotlin-stdlib:$kotlinVersion"

    def supportVersion = '23.2.1'
    supportAnnotations = "com.android.support:support-annotations:$supportVersion"
    supportV4 = "com.android.support:support-v4:$supportVersion"
    supportPalette = "com.android.support:palette-v7:$supportVersion"

    supportTestRunner = 'com.android.support.test:runner:0.4'
    supportTestRules = 'com.android.support.test:rules:0.4'
    supportTestEspresso = 'com.android.support.test.espresso:espresso-core:2.2.1'
    supportTestEspressoContrib = 'com.android.support.test.espresso:espresso-contrib:2.2.1'
    rxJava = 'io.reactivex.rxjava2:rxjava:2.0.0'
    junit = 'junit:junit:4.12'
    robolectric = 'org.robolectric:robolectric:3.1.4'
    truth = 'com.google.truth:truth:0.27'

    // Sample app dependencies
    supportAppCompat = "com.android.support:appcompat-v7:$supportVersion"
    rxAndroid = 'io.reactivex.rxjava2:rxandroid:2.0.0'
    supportRecyclerView = "com.android.support:recyclerview-v7:$supportVersion"
    butterKnife = 'com.jakewharton:butterknife:7.0.1'
    glide = 'com.github.bumptech.glide:glide:3.7.0'
    glideOkhttp = 'com.github.bumptech.glide:okhttp3-integration:1.4.0@aar'
    okhttp3 = 'com.squareup.okhttp3:okhttp:3.2.0'

    def retrofitVersion = '2.0.0'
    retrofit = "com.squareup.retrofit2:retrofit:$retrofitVersion"
    retrofitMoshi = "com.squareup.retrofit2:converter-moshi:$retrofitVersion"
    retrofitRxJava = "com.jakewharton.retrofit:retrofit2-rxjava2-adapter:1.0.0"
}

task wrapper(type: Wrapper) {
    gradleVersion = '2.14.1'
    distributionUrl = "https://services.gradle.org/distributions/gradle-$gradleVersion-all.zip"
}


================================================
FILE: gradle/gradle-mvn-push.gradle
================================================
/*
 * Copyright 2013 Chris Banes
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

apply plugin: 'maven'
apply plugin: 'signing'

def isReleaseBuild() {
    return VERSION_NAME.contains("SNAPSHOT") == false
}

def getRepositoryUsername() {
    return hasProperty('SONATYPE_NEXUS_USERNAME') ? SONATYPE_NEXUS_USERNAME : ""
}

def getRepositoryPassword() {
    return hasProperty('SONATYPE_NEXUS_PASSWORD') ? SONATYPE_NEXUS_PASSWORD : ""
}

afterEvaluate { project ->
    uploadArchives {
        repositories {
            mavenDeployer {
                beforeDeployment { MavenDeployment deployment -> signing.signPom(deployment) }

                pom.groupId = GROUP
                pom.artifactId = POM_ARTIFACT_ID
                pom.version = VERSION_NAME

                repository(url: "https://oss.sonatype.org/service/local/staging/deploy/maven2/") {
                    authentication(userName: getRepositoryUsername(), password: getRepositoryPassword())
                }
                snapshotRepository(url: "https://oss.sonatype.org/content/repositories/snapshots/") {
                    authentication(userName: getRepositoryUsername(), password: getRepositoryPassword())
                }

                pom.project {
                    name POM_NAME
                    packaging POM_PACKAGING
                    description POM_DESCRIPTION
                    url POM_URL

                    scm {
                        url POM_SCM_URL
                        connection POM_SCM_CONNECTION
                        developerConnection POM_SCM_DEV_CONNECTION
                    }

                    licenses {
                        license {
                            name POM_LICENCE_NAME
                            url POM_LICENCE_URL
                            distribution POM_LICENCE_DIST
                        }
                    }

                    developers {
                        developer {
                            id POM_DEVELOPER_ID
                            name POM_DEVELOPER_NAME
                        }
                    }
                }
            }
        }
    }

    signing {
        required { isReleaseBuild() && gradle.taskGraph.hasTask("uploadArchives") }
        sign configurations.archives
    }

    task androidJavadocs(type: Javadoc) {
        if (!project.plugins.hasPlugin('kotlin-android')) {
            source = android.sourceSets.main.java.srcDirs
        }
        classpath += project.files(android.getBootClasspath().join(File.pathSeparator))
        exclude '**/internal/*'

        if (JavaVersion.current().isJava8Compatible()) {
            options.addStringOption('Xdoclint:none', '-quiet')
        }
    }

    task androidJavadocsJar(type: Jar, dependsOn: androidJavadocs) {
        classifier = 'javadoc'
        from androidJavadocs.destinationDir
    }

    task androidSourcesJar(type: Jar) {
        classifier = 'sources'
        from android.sourceSets.main.java.sourceFiles
    }

    artifacts {
        archives androidSourcesJar
        archives androidJavadocsJar
    }
}


================================================
FILE: gradle/wrapper/gradle-wrapper.properties
================================================
#Sun Nov 06 14:26:33 CET 2016
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-2.14.1-all.zip


================================================
FILE: gradle.properties
================================================
# Project-wide Gradle settings.

# IDE (e.g. Android Studio) users:
# Gradle settings configured through the IDE *will override*
# any settings specified in this file.

# For more details on how to configure your build environment visit
# http://www.gradle.org/docs/current/userguide/build_environment.html

# Specifies the JVM arguments used for the daemon process.
# The setting is particularly useful for tweaking memory settings.
# Default value: -Xmx10248m -XX:MaxPermSize=256m
# org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8

# When configured, Gradle will run in incubating parallel mode.
# This option should only be used with decoupled projects. More details, visit
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
# org.gradle.parallel=true
GROUP=io.sweers.rxpalette
VERSION_NAME=0.3.1-SNAPSHOT

POM_DESCRIPTION=RxJava binding APIs for Palette.
POM_URL=https://github.com/hzsweers/RxPalette/
POM_SCM_URL=https://github.com/hzsweers/RxPalette/
POM_SCM_CONNECTION=scm:git:git://github.com/hzsweers/RxPalette.git
POM_SCM_DEV_CONNECTION=scm:git:ssh://git@github.com/hzsweers/RxPalette.git
POM_LICENCE_NAME=The Apache Software License, Version 2.0
POM_LICENCE_URL=http://www.apache.org/licenses/LICENSE-2.0.txt
POM_LICENCE_DIST=repo
POM_DEVELOPER_ID=hzsweers
POM_DEVELOPER_NAME=Zac Sweers


================================================
FILE: gradlew
================================================
#!/usr/bin/env bash

##############################################################################
##
##  Gradle start up script for UN*X
##
##############################################################################

# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
DEFAULT_JVM_OPTS=""

APP_NAME="Gradle"
APP_BASE_NAME=`basename "$0"`

# Use the maximum available, or set MAX_FD != -1 to use that value.
MAX_FD="maximum"

warn ( ) {
    echo "$*"
}

die ( ) {
    echo
    echo "$*"
    echo
    exit 1
}

# OS specific support (must be 'true' or 'false').
cygwin=false
msys=false
darwin=false
case "`uname`" in
  CYGWIN* )
    cygwin=true
    ;;
  Darwin* )
    darwin=true
    ;;
  MINGW* )
    msys=true
    ;;
esac

# Attempt to set APP_HOME
# Resolve links: $0 may be a link
PRG="$0"
# Need this for relative symlinks.
while [ -h "$PRG" ] ; do
    ls=`ls -ld "$PRG"`
    link=`expr "$ls" : '.*-> \(.*\)$'`
    if expr "$link" : '/.*' > /dev/null; then
        PRG="$link"
    else
        PRG=`dirname "$PRG"`"/$link"
    fi
done
SAVED="`pwd`"
cd "`dirname \"$PRG\"`/" >/dev/null
APP_HOME="`pwd -P`"
cd "$SAVED" >/dev/null

CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar

# Determine the Java command to use to start the JVM.
if [ -n "$JAVA_HOME" ] ; then
    if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
        # IBM's JDK on AIX uses strange locations for the executables
        JAVACMD="$JAVA_HOME/jre/sh/java"
    else
        JAVACMD="$JAVA_HOME/bin/java"
    fi
    if [ ! -x "$JAVACMD" ] ; then
        die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME

Please set the JAVA_HOME variable in your environment to match the
location of your Java installation."
    fi
else
    JAVACMD="java"
    which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.

Please set the JAVA_HOME variable in your environment to match the
location of your Java installation."
fi

# Increase the maximum file descriptors if we can.
if [ "$cygwin" = "false" -a "$darwin" = "false" ] ; then
    MAX_FD_LIMIT=`ulimit -H -n`
    if [ $? -eq 0 ] ; then
        if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then
            MAX_FD="$MAX_FD_LIMIT"
        fi
        ulimit -n $MAX_FD
        if [ $? -ne 0 ] ; then
            warn "Could not set maximum file descriptor limit: $MAX_FD"
        fi
    else
        warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT"
    fi
fi

# For Darwin, add options to specify how the application appears in the dock
if $darwin; then
    GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
fi

# For Cygwin, switch paths to Windows format before running java
if $cygwin ; then
    APP_HOME=`cygpath --path --mixed "$APP_HOME"`
    CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
    JAVACMD=`cygpath --unix "$JAVACMD"`

    # We build the pattern for arguments to be converted via cygpath
    ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`
    SEP=""
    for dir in $ROOTDIRSRAW ; do
        ROOTDIRS="$ROOTDIRS$SEP$dir"
        SEP="|"
    done
    OURCYGPATTERN="(^($ROOTDIRS))"
    # Add a user-defined pattern to the cygpath arguments
    if [ "$GRADLE_CYGPATTERN" != "" ] ; then
        OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)"
    fi
    # Now convert the arguments - kludge to limit ourselves to /bin/sh
    i=0
    for arg in "$@" ; do
        CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -`
        CHECK2=`echo "$arg"|egrep -c "^-"`                                 ### Determine if an option

        if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then                    ### Added a condition
            eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"`
        else
            eval `echo args$i`="\"$arg\""
        fi
        i=$((i+1))
    done
    case $i in
        (0) set -- ;;
        (1) set -- "$args0" ;;
        (2) set -- "$args0" "$args1" ;;
        (3) set -- "$args0" "$args1" "$args2" ;;
        (4) set -- "$args0" "$args1" "$args2" "$args3" ;;
        (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;;
        (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;;
        (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;;
        (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;;
        (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;;
    esac
fi

# Split up the JVM_OPTS And GRADLE_OPTS values into an array, following the shell quoting and substitution rules
function splitJvmOpts() {
    JVM_OPTS=("$@")
}
eval splitJvmOpts $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS
JVM_OPTS[${#JVM_OPTS[*]}]="-Dorg.gradle.appname=$APP_BASE_NAME"

exec "$JAVACMD" "${JVM_OPTS[@]}" -classpath "$CLASSPATH" org.gradle.wrapper.GradleWrapperMain "$@"


================================================
FILE: gradlew.bat
================================================
@if "%DEBUG%" == "" @echo off
@rem ##########################################################################
@rem
@rem  Gradle startup script for Windows
@rem
@rem ##########################################################################

@rem Set local scope for the variables with windows NT shell
if "%OS%"=="Windows_NT" setlocal

@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
set DEFAULT_JVM_OPTS=

set DIRNAME=%~dp0
if "%DIRNAME%" == "" set DIRNAME=.
set APP_BASE_NAME=%~n0
set APP_HOME=%DIRNAME%

@rem Find java.exe
if defined JAVA_HOME goto findJavaFromJavaHome

set JAVA_EXE=java.exe
%JAVA_EXE% -version >NUL 2>&1
if "%ERRORLEVEL%" == "0" goto init

echo.
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
echo.
echo Please set the JAVA_HOME variable in your environment to match the
echo location of your Java installation.

goto fail

:findJavaFromJavaHome
set JAVA_HOME=%JAVA_HOME:"=%
set JAVA_EXE=%JAVA_HOME%/bin/java.exe

if exist "%JAVA_EXE%" goto init

echo.
echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
echo.
echo Please set the JAVA_HOME variable in your environment to match the
echo location of your Java installation.

goto fail

:init
@rem Get command-line arguments, handling Windowz variants

if not "%OS%" == "Windows_NT" goto win9xME_args
if "%@eval[2+2]" == "4" goto 4NT_args

:win9xME_args
@rem Slurp the command line arguments.
set CMD_LINE_ARGS=
set _SKIP=2

:win9xME_args_slurp
if "x%~1" == "x" goto execute

set CMD_LINE_ARGS=%*
goto execute

:4NT_args
@rem Get arguments from the 4NT Shell from JP Software
set CMD_LINE_ARGS=%$

:execute
@rem Setup the command line

set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar

@rem Execute Gradle
"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS%

:end
@rem End local scope for the variables with windows NT shell
if "%ERRORLEVEL%"=="0" goto mainEnd

:fail
rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
rem the _cmd.exe /c_ return code!
if  not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
exit /b 1

:mainEnd
if "%OS%"=="Windows_NT" endlocal

:omega


================================================
FILE: rxpalette/build.gradle
================================================
buildscript {
    dependencies {
        classpath rootProject.ext.androidPlugin
    }
}

apply plugin: 'com.android.library'

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile rootProject.ext.rxJava
    compile rootProject.ext.supportAnnotations
    compile rootProject.ext.supportPalette

    testCompile rootProject.ext.junit
    testCompile rootProject.ext.robolectric
    testCompile rootProject.ext.truth
}

android {
    compileSdkVersion rootProject.ext.compileSdkVersion
    buildToolsVersion rootProject.ext.buildToolsVersion

    defaultConfig {
        minSdkVersion rootProject.ext.minSdkVersion
    }

    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_7
        targetCompatibility JavaVersion.VERSION_1_7
    }

    dexOptions {
        preDexLibraries = !rootProject.ext.ci
    }

    lintOptions {
        textReport true
        textOutput 'stdout'
    }

    buildTypes {
        debug {
            testCoverageEnabled true
        }
    }

    packagingOptions {
        exclude 'LICENSE.txt'
    }
}

apply from: rootProject.file('gradle/gradle-mvn-push.gradle')


================================================
FILE: rxpalette/gradle.properties
================================================
POM_ARTIFACT_ID=rxpalette
POM_NAME=RxPalette
POM_PACKAGING=aar


================================================
FILE: rxpalette/src/main/AndroidManifest.xml
================================================
<manifest package="io.sweers.rxpalette"/>


================================================
FILE: rxpalette/src/main/java/io/sweers/rxpalette/RxPalette.java
================================================
package io.sweers.rxpalette;

import android.graphics.Bitmap;
import android.support.annotation.CheckResult;
import android.support.annotation.NonNull;
import android.support.v7.graphics.Palette;

import java.util.concurrent.Callable;

import io.reactivex.Single;

/**
 * Static factory methods for creating {@linkplain Single singles} for {@link Palette}.
 */
public final class RxPalette {

    /**
     * Returns a {@linkplain Single single} that emits a {@linkplain Palette palette} from the source {@code bitmap}
     */
    @CheckResult @NonNull
    public static Single<Palette> generate(@NonNull final Bitmap bitmap) {
        return Single.fromCallable(new Callable<Palette>() {
            @Override
            public Palette call() throws Exception {
                return Palette.from(bitmap).generate();
            }
        });
    }

    /**
     * Returns a {@linkplain Single single} that emits a {@linkplain Palette palette} from the source {@code bitmap}
     */
    @CheckResult @NonNull
    public static Single<Palette> generate(@NonNull final Palette.Builder builder) {
        return Single.fromCallable(new Callable<Palette>() {
            @Override
            public Palette call() throws Exception {
                return builder.generate();
            }
        });
    }
}


================================================
FILE: rxpalette/src/test/java/io/sweers/rxpalette/RxPaletteTest.java
================================================
package io.sweers.rxpalette;

import android.app.Activity;
import android.content.Context;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.support.v7.graphics.Palette;

import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.robolectric.Robolectric;
import org.robolectric.RobolectricTestRunner;
import org.robolectric.annotation.Config;

import io.reactivex.subscribers.TestSubscriber;

@RunWith(RobolectricTestRunner.class)
@Config(constants = BuildConfig.class, sdk = 21)
public class RxPaletteTest {

    private Bitmap bitmap;

    @Before
    public void setUp() {
        Context context = Robolectric.buildActivity(Activity.class).create().get();
        bitmap = BitmapFactory.decodeResource(context.getResources(), android.R.drawable.star_on);
    }

    @Test
    public void testGenerate() {
        RxPalette.generate(bitmap)
                .test()
                .assertNoErrors()
                .assertComplete()
                .assertValueCount(1);
    }

    @Test
    public void testBuilderGenerate() {
        RxPalette.generate(Palette.from(bitmap))
                .test()
                .assertNoErrors()
                .assertComplete()
                .assertValueCount(1);
    }

    @Test
    public void testNullGenerate() {
        Bitmap nullBitmap = null;
        //noinspection ConstantConditions
        RxPalette.generate(nullBitmap)
                .test()
        		.assertError(IllegalArgumentException.class);
    }

    @Test
    public void testNullBuilderGenerate() {
        TestSubscriber<Palette> testSubscriber = new TestSubscriber<>();
        Palette.Builder nullBuilder = null;
        //noinspection ConstantConditions
        RxPalette.generate(nullBuilder)
                .test()
				.assertError(NullPointerException.class);
    }
}


================================================
FILE: rxpalette-kotlin/build.gradle
================================================
buildscript {
    dependencies {
        classpath rootProject.ext.androidPlugin
        classpath rootProject.ext.kotlinPlugin
    }
}

apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'

dependencies {
    compile project(':rxpalette')
    compile rootProject.ext.kotlinStdlib

    testCompile rootProject.ext.junit
    testCompile rootProject.ext.robolectric
    testCompile rootProject.ext.truth
}

android {
    compileSdkVersion rootProject.ext.compileSdkVersion
    buildToolsVersion rootProject.ext.buildToolsVersion

    defaultConfig {
        minSdkVersion rootProject.ext.minSdkVersion
    }

    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_7
        targetCompatibility JavaVersion.VERSION_1_7
    }

    dexOptions {
        preDexLibraries = !rootProject.ext.ci
    }

    lintOptions {
        textReport true
        textOutput 'stdout'
    }

    sourceSets {
        main.java.srcDirs += 'src/main/kotlin'
        test.java.srcDirs += 'src/test/kotlin'
    }
}

apply from: rootProject.file('gradle/gradle-mvn-push.gradle')


================================================
FILE: rxpalette-kotlin/gradle.properties
================================================
POM_ARTIFACT_ID=rxpalette-kotlin
POM_NAME=RxPalette Kotlin
POM_PACKAGING=aar


================================================
FILE: rxpalette-kotlin/src/main/AndroidManifest.xml
================================================
<manifest package="io.sweers.rxpalette.kotlin"/>


================================================
FILE: rxpalette-kotlin/src/main/kotlin/io/sweers/rxpalette/RxPalette.kt
================================================
package io.sweers.rxpalette

import android.support.v7.graphics.Palette
import io.reactivex.Single

/**
 * Returns a [single][Single] that emits a [palette][Palette] from the source `bitmap`
 */
public inline fun Palette.Builder.asSingle(): Single<Palette> = RxPalette.generate(this)


================================================
FILE: rxpalette-kotlin/src/test/kotlin/io/sweers/rxpalette/RxPaletteTest.kt
================================================
package io.sweers.rxpalette

import android.app.Activity
import android.content.Context
import android.graphics.Bitmap
import android.graphics.BitmapFactory
import android.support.v7.graphics.Palette
import org.junit.Before
import org.junit.Test
import org.junit.runner.RunWith
import org.robolectric.Robolectric
import org.robolectric.RobolectricTestRunner
import org.robolectric.annotation.Config
import kotlin.properties.Delegates


@RunWith(RobolectricTestRunner::class)
@Config(constants = BuildConfig::class, sdk = intArrayOf(21))
public class RxPaletteTest {

    var bitmap: Bitmap by Delegates.notNull<Bitmap>()

    @Before fun setUp() {
        val context: Context = Robolectric.buildActivity(Activity::class.java).create().get()
        bitmap = BitmapFactory.decodeResource(context.resources, android.R.drawable.star_on)
    }

    @Test fun testBuilderGenerate() {
        Palette.Builder(bitmap).asSingle()
            .test()
            .assertNoErrors()
            .assertComplete()
            .assertValueCount(1)
    }

    @Test fun testNullBuilderGenerate() {
        val nullBuilder: Palette.Builder? = null
        nullBuilder?.asSingle()?.test()?.assertNoErrors()?.assertNoValues()?.assertNotComplete()
    }
}


================================================
FILE: sample/.gitignore
================================================
/build


================================================
FILE: sample/build.gradle
================================================
buildscript {
    dependencies {
        classpath rootProject.ext.androidPlugin
        classpath rootProject.ext.kotlinPlugin
    }
}

apply plugin: 'com.android.application'

android {
    compileSdkVersion rootProject.ext.compileSdkVersion
    buildToolsVersion rootProject.ext.buildToolsVersion

    defaultConfig {
        applicationId "io.sweers.rxpalette.sample"
        minSdkVersion rootProject.ext.minSdkVersion
        targetSdkVersion rootProject.ext.targetSdkVersion
        versionCode 1
        versionName "1.0"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }

    sourceSets {
        main.java.srcDirs += 'src/main/kotlin'
    }
}

dependencies {
    compile rootProject.ext.supportAppCompat
    compile rootProject.ext.supportPalette
    compile rootProject.ext.supportRecyclerView
    compile rootProject.ext.kotlinStdlib
    compile rootProject.ext.rxJava
    compile rootProject.ext.rxAndroid
    compile rootProject.ext.retrofit
    compile rootProject.ext.retrofitMoshi
    compile rootProject.ext.retrofitRxJava
    compile rootProject.ext.okhttp3
    compile rootProject.ext.butterKnife
    compile rootProject.ext.glide
    compile rootProject.ext.glideOkhttp
    compile project(':rxpalette')
    compile project(':rxpalette-kotlin')
}


================================================
FILE: sample/proguard-rules.pro
================================================
# Add project specific ProGuard rules here.
# By default, the flags in this file are appended to flags specified
# in /Users/pandanomic/dev/android/android-sdk/tools/proguard/proguard-android.txt
# You can edit the include path and order by changing the proguardFiles
# directive in build.gradle.
#
# For more details, see
#   http://developer.android.com/guide/developing/tools/proguard.html

# Add any project specific keep options here:

# 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 *;
#}


================================================
FILE: sample/src/main/AndroidManifest.xml
================================================
<?xml version="1.0" encoding="utf-8"?>
<manifest package="io.sweers.rxpalette.sample"
          xmlns:android="http://schemas.android.com/apk/res/android">

    <uses-permission android:name="android.permission.INTERNET" />

    <application
            android:name=".RxPaletteSampleApplication"
            android:allowBackup="true"
            android:icon="@mipmap/ic_launcher"
            android:label="@string/app_name"
            android:supportsRtl="true"
            android:theme="@style/AppTheme">
        <activity android:name=".MainActivity">
            <intent-filter>
                <action android:name="android.intent.action.MAIN"/>

                <category android:name="android.intent.category.LAUNCHER"/>
            </intent-filter>
        </activity>

        <meta-data
            android:name="io.sweers.rxpalette.sample.GlideConfiguration"
            android:value="GlideModule" />
        <meta-data
            android:name="com.bumptech.glide.integration.okhttp3.OkHttpGlideModule"
            android:value="GlideModule" />
    </application>

</manifest>


================================================
FILE: sample/src/main/java/io/sweers/rxpalette/sample/GlideConfiguration.java
================================================
package io.sweers.rxpalette.sample;

import android.app.ActivityManager;
import android.content.Context;
import android.support.v4.app.ActivityManagerCompat;

import com.bumptech.glide.Glide;
import com.bumptech.glide.GlideBuilder;
import com.bumptech.glide.load.DecodeFormat;
import com.bumptech.glide.module.GlideModule;

/**
 * Configure Glide to set desired image quality.
 */
public class GlideConfiguration implements GlideModule {

    @Override
    public void applyOptions(Context context, GlideBuilder builder) {
        // Prefer RGB 535 on lower end devices
        ActivityManager am = (ActivityManager) context.getSystemService(Context.ACTIVITY_SERVICE);
        builder.setDecodeFormat(ActivityManagerCompat.isLowRamDevice(am)
                ? DecodeFormat.PREFER_RGB_565
                : DecodeFormat.PREFER_ARGB_8888);
    }

    @Override
    public void registerComponents(Context context, Glide glide) {

    }
}


================================================
FILE: sample/src/main/java/io/sweers/rxpalette/sample/MainActivity.java
================================================
package io.sweers.rxpalette.sample;

import android.graphics.Bitmap;
import android.graphics.Color;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.support.v7.graphics.Palette;
import android.support.v7.widget.LinearLayoutManager;
import android.support.v7.widget.RecyclerView;
import android.util.Log;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ImageView;
import android.widget.ProgressBar;
import android.widget.TextView;
import android.widget.Toast;

import com.bumptech.glide.Glide;
import com.bumptech.glide.load.resource.bitmap.GlideBitmapDrawable;
import com.bumptech.glide.load.resource.drawable.GlideDrawable;
import com.bumptech.glide.request.RequestListener;
import com.bumptech.glide.request.target.Target;

import java.util.List;

import butterknife.Bind;
import butterknife.ButterKnife;
import io.reactivex.android.schedulers.AndroidSchedulers;
import io.reactivex.functions.Consumer;
import io.reactivex.observers.DisposableSingleObserver;
import io.reactivex.schedulers.Schedulers;
import io.sweers.rxpalette.RxPalette;
import io.sweers.rxpalette.sample.api.ImgurResponse;
import io.sweers.rxpalette.sample.api.model.Album;
import io.sweers.rxpalette.sample.api.model.Image;

public class MainActivity extends AppCompatActivity {

    @Bind(R.id.recyclerview)
    RecyclerView recyclerView;

    @Bind(R.id.loading)
    ProgressBar progressBar;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        ButterKnife.bind(this);

        LinearLayoutManager layoutManager = new LinearLayoutManager(this);
        recyclerView.setLayoutManager(layoutManager);

        RxPaletteSampleApplication.get()
                .getImgurApi()
                .getAlbum("jx90V")
                .subscribeOn(Schedulers.io())
                .observeOn(AndroidSchedulers.mainThread())
                .subscribe(new DisposableSingleObserver<ImgurResponse<Album>>() {
                    @Override
                    public void onSuccess(ImgurResponse<Album> albumImgurResponse) {
                        Adapter adapter = new Adapter(albumImgurResponse.data.images);
                        progressBar.setVisibility(View.GONE);
                        recyclerView.setVisibility(View.VISIBLE);
                        recyclerView.setAdapter(adapter);
                    }

                    @Override
                    public void onError(Throwable e) {
                        Toast.makeText(MainActivity.this, "Error: " + e, Toast.LENGTH_LONG).show();
                        Log.e("ERROR", "OnError", e);
                    }
                });
    }

    public static class Adapter extends RecyclerView.Adapter<ImageHolder> {

        private final List<Image> images;

        private Adapter(List<Image> images) {
            this.images = images;
        }


        @Override
        public ImageHolder onCreateViewHolder(ViewGroup parent, int viewType) {
            View view = LayoutInflater.from(parent.getContext()).inflate(R.layout.image_item, parent, false);
            return new ImageHolder(view);
        }

        @Override
        public void onBindViewHolder(final ImageHolder holder, int position) {
            Image image = images.get(position);
            Glide.with(holder.imageView.getContext())
                    .load(image.link)
                    .crossFade()
                    .centerCrop()
                    .listener(new BitmapListener() {
                        @Override
                        public void onBitmapReady(Bitmap bitmap) {
                            RxPalette.generate(bitmap)
                                    .subscribeOn(Schedulers.computation())
                                    .observeOn(AndroidSchedulers.mainThread())
                                    .subscribe(new Consumer<Palette>() {
                                        @Override
                                        public void accept(Palette palette) {
                                            Palette.Swatch swatch = palette.getVibrantSwatch() != null
                                                    ? palette.getVibrantSwatch()
                                                    : palette.getMutedSwatch();

                                            holder.textView.setTextColor(swatch != null
                                                    ? swatch.getTitleTextColor()
                                                    : Color.BLACK);
                                            holder.textView.setBackgroundColor(swatch != null
                                                    ? swatch.getRgb()
                                                    : Color.WHITE);
                                        }
                                    });
                        }
                    })
                    .into(holder.imageView);
        }

        @Override
        public int getItemCount() {
            return images.size();
        }
    }

    public static class ImageHolder extends RecyclerView.ViewHolder {

        @Bind(R.id.image)
        ImageView imageView;

        @Bind(R.id.text)
        TextView textView;

        public ImageHolder(View itemView) {
            super(itemView);
            ButterKnife.bind(this, itemView);
        }
    }

    /**
     * RequestListener that forwards the bitmap onto a callback
     */
    private abstract static class BitmapListener implements RequestListener<String, GlideDrawable> {

        @Override
        public boolean onException(
                Exception e, String model, Target<GlideDrawable> target, boolean isFirstResource) {
            return false;
        }

        @Override
        public boolean onResourceReady(
                GlideDrawable resource,
                String model,
                Target<GlideDrawable> target,
                boolean isFromMemoryCache,
                boolean isFirstResource) {
            onBitmapReady(GlideBitmapDrawable.class.cast(resource).getBitmap());
            return false;
        }

        public void onBitmapReady(Bitmap bitmap) {

        }
    }
}


================================================
FILE: sample/src/main/java/io/sweers/rxpalette/sample/RxPaletteSampleApplication.java
================================================
package io.sweers.rxpalette.sample;

import android.app.Application;

import io.sweers.rxpalette.sample.api.ImgurApi;

public final class RxPaletteSampleApplication extends Application {

    private static RxPaletteSampleApplication instance;

    private ImgurApi imgurApi;

    @Override
    public void onCreate() {
        super.onCreate();
        instance = this;
        imgurApi = new ImgurApi("4e2bb69101e4b13");
    }

    public static RxPaletteSampleApplication get() {
        return instance;
    }

    public ImgurApi getImgurApi() {
        return imgurApi;
    }
}


================================================
FILE: sample/src/main/java/io/sweers/rxpalette/sample/api/ImgurApi.java
================================================
package io.sweers.rxpalette.sample.api;

import com.jakewharton.retrofit2.adapter.rxjava2.RxJava2CallAdapterFactory;

import java.io.IOException;

import io.reactivex.Single;
import io.sweers.rxpalette.sample.api.model.Album;
import io.sweers.rxpalette.sample.api.service.AlbumService;
import okhttp3.Interceptor;
import okhttp3.OkHttpClient;
import okhttp3.Request;
import okhttp3.Response;
import retrofit2.Retrofit;
import retrofit2.converter.moshi.MoshiConverterFactory;

/**
 * The core class of the Imgur API.
 *
 * Note that Most of the Imgur API is adapted from https://github.com/Rabrg/imgur-api
 *
 * @author Ryan Greene
 */
public class ImgurApi {

    private final AlbumService albumService;

    /**
     * Constructs a new ImgurApi with the specified clientId.
     *
     * @param clientId The client id.
     */
    public ImgurApi(final String clientId) {
        OkHttpClient okHttpClient = new OkHttpClient.Builder()
                .addInterceptor(new Interceptor() {
                    @Override
                    public Response intercept(Interceptor.Chain chain) throws IOException {
                        Request request = chain.request();
                        request = request.newBuilder().addHeader("Authorization", "Client-ID " + clientId).build();
                        return chain.proceed(request);
                    }
                })
                .build();
        albumService = new Retrofit.Builder()
                .baseUrl("https://api.imgur.com/3/")
                .client(okHttpClient)
                .addConverterFactory(MoshiConverterFactory.create())
                .addCallAdapterFactory(RxJava2CallAdapterFactory.create())
                .build()
                .create(AlbumService.class);
    }

    /**
     * Get information about a specific album.
     *
     * @param id The id of the album.
     * @return A response containing information about the album.
     */
    public Single<ImgurResponse<Album>> getAlbum(final String id) {
        return albumService.getAlbum(id);
    }
}


================================================
FILE: sample/src/main/java/io/sweers/rxpalette/sample/api/ImgurResponse.java
================================================
package io.sweers.rxpalette.sample.api;


import io.sweers.rxpalette.sample.api.model.Model;

/**
 * Represents a single response from a request.
 * @param <M> The data model returned with the response.
 * @author Ryan Greene
 */
public class ImgurResponse<M extends Model> {

    /**
     * The data model returned with the response.
     */
    public M data;

    /**
     * Whether or not the request was a success.
     */
    public boolean success;

    /**
     * The status code returned from the request.
     */
    public int status;
}


================================================
FILE: sample/src/main/java/io/sweers/rxpalette/sample/api/model/Album.java
================================================
package io.sweers.rxpalette.sample.api.model;

import java.util.List;

public class Album extends Model {

    public String id;
    public String title;
    public String description;
    public long datetime;
    public String cover;
    public int cover_width;
    public int cover_height;
    public String account_url;
    public int account_id;
    public String privacy;
    public String layout;
    public int views;
    public String link;
    public boolean favorite;
    public String section;
    public int order;
    public String deletehash;
    public int images_count;
    public List<Image> images;
}


================================================
FILE: sample/src/main/java/io/sweers/rxpalette/sample/api/model/Image.java
================================================
package io.sweers.rxpalette.sample.api.model;

public class Image extends Model {

    public String id;
    public String title;
    public String description;
    public long datetime;
    public String type;
    public boolean animated;
    public int width;
    public int height;
    public long size;
    public int views;
    public long bandwidth;
    public String deletehash;
    public String name;
    public String section;
    public String link;
    public String gifv;
    public String mp4;
    public String webm;
    public boolean looping;
    public boolean favorite;
    public String vote;
    public String account_url;
    public String account_id;
}


================================================
FILE: sample/src/main/java/io/sweers/rxpalette/sample/api/model/Model.java
================================================
package io.sweers.rxpalette.sample.api.model;

public abstract class Model {
}


================================================
FILE: sample/src/main/java/io/sweers/rxpalette/sample/api/service/AlbumService.java
================================================
package io.sweers.rxpalette.sample.api.service;

import io.reactivex.Single;
import io.sweers.rxpalette.sample.api.ImgurResponse;
import io.sweers.rxpalette.sample.api.model.Album;
import io.sweers.rxpalette.sample.api.model.Image;
import retrofit2.http.GET;
import retrofit2.http.Path;

/**
 * An interface containing all album related services used by the Retrofit REST client.
 *
 * @author Ryan Greene
 */
public interface AlbumService {

    @GET("album/{id}")
    Single<ImgurResponse<Album>> getAlbum(@Path("id") String id);

    @GET("album/{albumId}/{imageId}")
    Single<ImgurResponse<Image>> getAlbumImage(@Path("albumId") String albumId, @Path("imageId") String imageId);
}


================================================
FILE: sample/src/main/res/layout/activity_main.xml
================================================
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="io.sweers.rxpalette.MainActivity">

    <android.support.v7.widget.RecyclerView
            android:id="@+id/recyclerview"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:visibility="gone"
            />

    <android.support.v4.widget.ContentLoadingProgressBar
            android:id="@+id/loading"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center"
            android:indeterminate="true"
            style="@style/Widget.AppCompat.ProgressBar"
            />

</FrameLayout>


================================================
FILE: sample/src/main/res/layout/image_item.xml
================================================
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        android:padding="16dp"
        >

    <ImageView
            android:id="@+id/image"
            android:layout_width="match_parent"
            android:layout_height="200dp"
            android:contentDescription="Image"
            />

    <TextView
            android:id="@+id/text"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:padding="16dp"
            android:text="@string/lorem"
            />

</LinearLayout>


================================================
FILE: sample/src/main/res/values/colors.xml
================================================
<?xml version="1.0" encoding="utf-8"?>
<resources>
    <color name="colorPrimary">#3F51B5</color>
    <color name="colorPrimaryDark">#303F9F</color>
    <color name="colorAccent">#FF4081</color>
</resources>


================================================
FILE: sample/src/main/res/values/dimens.xml
================================================
<resources>
    <!-- Default screen margins, per the Android Design guidelines. -->
    <dimen name="activity_horizontal_margin">16dp</dimen>
    <dimen name="activity_vertical_margin">16dp</dimen>
</resources>


================================================
FILE: sample/src/main/res/values/strings.xml
================================================
<resources>
    <string name="app_name">RxPalette Sample</string>
    <string name="lorem">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut
        labore et dolore magna aliqua.</string>
</resources>


================================================
FILE: sample/src/main/res/values/styles.xml
================================================
<resources>

    <!-- Base application theme. -->
    <style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
        <!-- Customize your theme here. -->
        <item name="colorPrimary">@color/colorPrimary</item>
        <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
        <item name="colorAccent">@color/colorAccent</item>
    </style>

</resources>


================================================
FILE: sample/src/main/res/values-w820dp/dimens.xml
================================================
<resources>
    <!-- Example customization of dimensions originally defined in res/values/dimens.xml
         (such as screen margins) for screens with more than 820dp of available width. This
         would include 7" and 10" devices in landscape (~960dp and ~1280dp respectively). -->
    <dimen name="activity_horizontal_margin">64dp</dimen>
</resources>


================================================
FILE: settings.gradle
================================================
rootProject.name = 'rxpalette-root'
include ':rxpalette'
include ':rxpalette-kotlin'
include ':sample'
Download .txt
gitextract_tv5tj5qv/

├── .buildscript/
│   ├── deploy_snapshot.sh
│   └── settings.xml
├── .gitignore
├── .travis.yml
├── CHANGELOG.md
├── LICENSE.txt
├── README.md
├── RELEASING.md
├── build.gradle
├── gradle/
│   ├── gradle-mvn-push.gradle
│   └── wrapper/
│       ├── gradle-wrapper.jar
│       └── gradle-wrapper.properties
├── gradle.properties
├── gradlew
├── gradlew.bat
├── rxpalette/
│   ├── build.gradle
│   ├── gradle.properties
│   └── src/
│       ├── main/
│       │   ├── AndroidManifest.xml
│       │   └── java/
│       │       └── io/
│       │           └── sweers/
│       │               └── rxpalette/
│       │                   └── RxPalette.java
│       └── test/
│           └── java/
│               └── io/
│                   └── sweers/
│                       └── rxpalette/
│                           └── RxPaletteTest.java
├── rxpalette-kotlin/
│   ├── build.gradle
│   ├── gradle.properties
│   └── src/
│       ├── main/
│       │   ├── AndroidManifest.xml
│       │   └── kotlin/
│       │       └── io/
│       │           └── sweers/
│       │               └── rxpalette/
│       │                   └── RxPalette.kt
│       └── test/
│           └── kotlin/
│               └── io/
│                   └── sweers/
│                       └── rxpalette/
│                           └── RxPaletteTest.kt
├── sample/
│   ├── .gitignore
│   ├── build.gradle
│   ├── proguard-rules.pro
│   └── src/
│       └── main/
│           ├── AndroidManifest.xml
│           ├── java/
│           │   └── io/
│           │       └── sweers/
│           │           └── rxpalette/
│           │               └── sample/
│           │                   ├── GlideConfiguration.java
│           │                   ├── MainActivity.java
│           │                   ├── RxPaletteSampleApplication.java
│           │                   └── api/
│           │                       ├── ImgurApi.java
│           │                       ├── ImgurResponse.java
│           │                       ├── model/
│           │                       │   ├── Album.java
│           │                       │   ├── Image.java
│           │                       │   └── Model.java
│           │                       └── service/
│           │                           └── AlbumService.java
│           └── res/
│               ├── layout/
│               │   ├── activity_main.xml
│               │   └── image_item.xml
│               ├── values/
│               │   ├── colors.xml
│               │   ├── dimens.xml
│               │   ├── strings.xml
│               │   └── styles.xml
│               └── values-w820dp/
│                   └── dimens.xml
└── settings.gradle
Download .txt
SYMBOL INDEX (39 symbols across 11 files)

FILE: rxpalette/src/main/java/io/sweers/rxpalette/RxPalette.java
  class RxPalette (line 15) | public final class RxPalette {
    method generate (line 20) | @CheckResult @NonNull
    method generate (line 33) | @CheckResult @NonNull

FILE: rxpalette/src/test/java/io/sweers/rxpalette/RxPaletteTest.java
  class RxPaletteTest (line 18) | @RunWith(RobolectricTestRunner.class)
    method setUp (line 24) | @Before
    method testGenerate (line 30) | @Test
    method testBuilderGenerate (line 39) | @Test
    method testNullGenerate (line 48) | @Test
    method testNullBuilderGenerate (line 57) | @Test

FILE: sample/src/main/java/io/sweers/rxpalette/sample/GlideConfiguration.java
  class GlideConfiguration (line 15) | public class GlideConfiguration implements GlideModule {
    method applyOptions (line 17) | @Override
    method registerComponents (line 26) | @Override

FILE: sample/src/main/java/io/sweers/rxpalette/sample/MainActivity.java
  class MainActivity (line 38) | public class MainActivity extends AppCompatActivity {
    method onCreate (line 46) | @Override
    class Adapter (line 77) | public static class Adapter extends RecyclerView.Adapter<ImageHolder> {
      method Adapter (line 81) | private Adapter(List<Image> images) {
      method onCreateViewHolder (line 86) | @Override
      method onBindViewHolder (line 92) | @Override
      method getItemCount (line 125) | @Override
    class ImageHolder (line 131) | public static class ImageHolder extends RecyclerView.ViewHolder {
      method ImageHolder (line 139) | public ImageHolder(View itemView) {
    class BitmapListener (line 148) | private abstract static class BitmapListener implements RequestListene...
      method onException (line 150) | @Override
      method onResourceReady (line 156) | @Override
      method onBitmapReady (line 167) | public void onBitmapReady(Bitmap bitmap) {

FILE: sample/src/main/java/io/sweers/rxpalette/sample/RxPaletteSampleApplication.java
  class RxPaletteSampleApplication (line 7) | public final class RxPaletteSampleApplication extends Application {
    method onCreate (line 13) | @Override
    method get (line 20) | public static RxPaletteSampleApplication get() {
    method getImgurApi (line 24) | public ImgurApi getImgurApi() {

FILE: sample/src/main/java/io/sweers/rxpalette/sample/api/ImgurApi.java
  class ImgurApi (line 24) | public class ImgurApi {
    method ImgurApi (line 33) | public ImgurApi(final String clientId) {
    method getAlbum (line 59) | public Single<ImgurResponse<Album>> getAlbum(final String id) {

FILE: sample/src/main/java/io/sweers/rxpalette/sample/api/ImgurResponse.java
  class ImgurResponse (line 11) | public class ImgurResponse<M extends Model> {

FILE: sample/src/main/java/io/sweers/rxpalette/sample/api/model/Album.java
  class Album (line 5) | public class Album extends Model {

FILE: sample/src/main/java/io/sweers/rxpalette/sample/api/model/Image.java
  class Image (line 3) | public class Image extends Model {

FILE: sample/src/main/java/io/sweers/rxpalette/sample/api/model/Model.java
  class Model (line 3) | public abstract class Model {

FILE: sample/src/main/java/io/sweers/rxpalette/sample/api/service/AlbumService.java
  type AlbumService (line 15) | public interface AlbumService {
    method getAlbum (line 17) | @GET("album/{id}")
    method getAlbumImage (line 20) | @GET("album/{albumId}/{imageId}")
Condensed preview — 46 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (66K chars).
[
  {
    "path": ".buildscript/deploy_snapshot.sh",
    "chars": 940,
    "preview": "#!/bin/bash\n#\n# Deploy a jar, source jar, and javadoc jar to Sonatype's snapshot repo.\n#\n# Adapted from https://coderwal"
  },
  {
    "path": ".buildscript/settings.xml",
    "chars": 261,
    "preview": "<settings>\n    <servers>\n        <server>\n            <id>sonatype-nexus-snapshots</id>\n            <username>${env.SONA"
  },
  {
    "path": ".gitignore",
    "chars": 1298,
    "preview": "###OSX###\n\n.DS_Store\n.AppleDouble\n.LSOverride\n\n# Icon must ends with two \\r.\nIcon\n\n\n# Thumbnails\n._*\n\n# Files that might"
  },
  {
    "path": ".travis.yml",
    "chars": 1861,
    "preview": "language: android\n\nandroid:\n  components:\n    - tools\n    - platform-tools\n    - build-tools-23.0.2\n    - android-23\n   "
  },
  {
    "path": "CHANGELOG.md",
    "chars": 988,
    "preview": "Change Log\n==========\n\nVersion 0.3.0 *2016-2-5*\n----------------------------\n\n* Uses RxJava's new `fromCallable()` API u"
  },
  {
    "path": "LICENSE.txt",
    "chars": 11358,
    "preview": "\n                                 Apache License\n                           Version 2.0, January 2004\n                  "
  },
  {
    "path": "README.md",
    "chars": 1634,
    "preview": "RxPalette\n=========\n\nRxJava binding APIs for the [Palette][palette] Android library.\n\nUsage\n-----\n\nJava:\n```java\nRxPalet"
  },
  {
    "path": "RELEASING.md",
    "chars": 631,
    "preview": "Releasing\n========\n\n 1. Change the version in `gradle.properties` to a non-SNAPSHOT version.\n 2. Update the `CHANGELOG.m"
  },
  {
    "path": "build.gradle",
    "chars": 2924,
    "preview": "subprojects {\n    buildscript {\n        repositories {\n            jcenter()\n            mavenCentral()\n        }\n    }\n"
  },
  {
    "path": "gradle/gradle-mvn-push.gradle",
    "chars": 3606,
    "preview": "/*\n * Copyright 2013 Chris Banes\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not us"
  },
  {
    "path": "gradle/wrapper/gradle-wrapper.properties",
    "chars": 233,
    "preview": "#Sun Nov 06 14:26:33 CET 2016\ndistributionBase=GRADLE_USER_HOME\ndistributionPath=wrapper/dists\nzipStoreBase=GRADLE_USER_"
  },
  {
    "path": "gradle.properties",
    "chars": 1399,
    "preview": "# Project-wide Gradle settings.\n\n# IDE (e.g. Android Studio) users:\n# Gradle settings configured through the IDE *will o"
  },
  {
    "path": "gradlew",
    "chars": 4971,
    "preview": "#!/usr/bin/env bash\n\n##############################################################################\n##\n##  Gradle start "
  },
  {
    "path": "gradlew.bat",
    "chars": 2314,
    "preview": "@if \"%DEBUG%\" == \"\" @echo off\n@rem ##########################################################################\n@rem\n@rem "
  },
  {
    "path": "rxpalette/build.gradle",
    "chars": 1137,
    "preview": "buildscript {\n    dependencies {\n        classpath rootProject.ext.androidPlugin\n    }\n}\n\napply plugin: 'com.android.lib"
  },
  {
    "path": "rxpalette/gradle.properties",
    "chars": 63,
    "preview": "POM_ARTIFACT_ID=rxpalette\nPOM_NAME=RxPalette\nPOM_PACKAGING=aar\n"
  },
  {
    "path": "rxpalette/src/main/AndroidManifest.xml",
    "chars": 42,
    "preview": "<manifest package=\"io.sweers.rxpalette\"/>\n"
  },
  {
    "path": "rxpalette/src/main/java/io/sweers/rxpalette/RxPalette.java",
    "chars": 1309,
    "preview": "package io.sweers.rxpalette;\n\nimport android.graphics.Bitmap;\nimport android.support.annotation.CheckResult;\nimport andr"
  },
  {
    "path": "rxpalette/src/test/java/io/sweers/rxpalette/RxPaletteTest.java",
    "chars": 1866,
    "preview": "package io.sweers.rxpalette;\n\nimport android.app.Activity;\nimport android.content.Context;\nimport android.graphics.Bitma"
  },
  {
    "path": "rxpalette-kotlin/build.gradle",
    "chars": 1082,
    "preview": "buildscript {\n    dependencies {\n        classpath rootProject.ext.androidPlugin\n        classpath rootProject.ext.kotli"
  },
  {
    "path": "rxpalette-kotlin/gradle.properties",
    "chars": 77,
    "preview": "POM_ARTIFACT_ID=rxpalette-kotlin\nPOM_NAME=RxPalette Kotlin\nPOM_PACKAGING=aar\n"
  },
  {
    "path": "rxpalette-kotlin/src/main/AndroidManifest.xml",
    "chars": 49,
    "preview": "<manifest package=\"io.sweers.rxpalette.kotlin\"/>\n"
  },
  {
    "path": "rxpalette-kotlin/src/main/kotlin/io/sweers/rxpalette/RxPalette.kt",
    "chars": 284,
    "preview": "package io.sweers.rxpalette\n\nimport android.support.v7.graphics.Palette\nimport io.reactivex.Single\n\n/**\n * Returns a [si"
  },
  {
    "path": "rxpalette-kotlin/src/test/kotlin/io/sweers/rxpalette/RxPaletteTest.kt",
    "chars": 1239,
    "preview": "package io.sweers.rxpalette\n\nimport android.app.Activity\nimport android.content.Context\nimport android.graphics.Bitmap\ni"
  },
  {
    "path": "sample/.gitignore",
    "chars": 7,
    "preview": "/build\n"
  },
  {
    "path": "sample/build.gradle",
    "chars": 1402,
    "preview": "buildscript {\n    dependencies {\n        classpath rootProject.ext.androidPlugin\n        classpath rootProject.ext.kotli"
  },
  {
    "path": "sample/proguard-rules.pro",
    "chars": 672,
    "preview": "# Add project specific ProGuard rules here.\n# By default, the flags in this file are appended to flags specified\n# in /U"
  },
  {
    "path": "sample/src/main/AndroidManifest.xml",
    "chars": 1096,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<manifest package=\"io.sweers.rxpalette.sample\"\n          xmlns:android=\"http://sc"
  },
  {
    "path": "sample/src/main/java/io/sweers/rxpalette/sample/GlideConfiguration.java",
    "chars": 935,
    "preview": "package io.sweers.rxpalette.sample;\n\nimport android.app.ActivityManager;\nimport android.content.Context;\nimport android."
  },
  {
    "path": "sample/src/main/java/io/sweers/rxpalette/sample/MainActivity.java",
    "chars": 6299,
    "preview": "package io.sweers.rxpalette.sample;\n\nimport android.graphics.Bitmap;\nimport android.graphics.Color;\nimport android.os.Bu"
  },
  {
    "path": "sample/src/main/java/io/sweers/rxpalette/sample/RxPaletteSampleApplication.java",
    "chars": 584,
    "preview": "package io.sweers.rxpalette.sample;\n\nimport android.app.Application;\n\nimport io.sweers.rxpalette.sample.api.ImgurApi;\n\np"
  },
  {
    "path": "sample/src/main/java/io/sweers/rxpalette/sample/api/ImgurApi.java",
    "chars": 2058,
    "preview": "package io.sweers.rxpalette.sample.api;\n\nimport com.jakewharton.retrofit2.adapter.rxjava2.RxJava2CallAdapterFactory;\n\nim"
  },
  {
    "path": "sample/src/main/java/io/sweers/rxpalette/sample/api/ImgurResponse.java",
    "chars": 548,
    "preview": "package io.sweers.rxpalette.sample.api;\n\n\nimport io.sweers.rxpalette.sample.api.model.Model;\n\n/**\n * Represents a single"
  },
  {
    "path": "sample/src/main/java/io/sweers/rxpalette/sample/api/model/Album.java",
    "chars": 620,
    "preview": "package io.sweers.rxpalette.sample.api.model;\n\nimport java.util.List;\n\npublic class Album extends Model {\n\n    public St"
  },
  {
    "path": "sample/src/main/java/io/sweers/rxpalette/sample/api/model/Image.java",
    "chars": 676,
    "preview": "package io.sweers.rxpalette.sample.api.model;\n\npublic class Image extends Model {\n\n    public String id;\n    public Stri"
  },
  {
    "path": "sample/src/main/java/io/sweers/rxpalette/sample/api/model/Model.java",
    "chars": 79,
    "preview": "package io.sweers.rxpalette.sample.api.model;\n\npublic abstract class Model {\n}\n"
  },
  {
    "path": "sample/src/main/java/io/sweers/rxpalette/sample/api/service/AlbumService.java",
    "chars": 687,
    "preview": "package io.sweers.rxpalette.sample.api.service;\n\nimport io.reactivex.Single;\nimport io.sweers.rxpalette.sample.api.Imgur"
  },
  {
    "path": "sample/src/main/res/layout/activity_main.xml",
    "chars": 900,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<FrameLayout xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    xmlns"
  },
  {
    "path": "sample/src/main/res/layout/image_item.xml",
    "chars": 748,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<LinearLayout\n        xmlns:android=\"http://schemas.android.com/apk/res/android\"\n"
  },
  {
    "path": "sample/src/main/res/values/colors.xml",
    "chars": 208,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <color name=\"colorPrimary\">#3F51B5</color>\n    <color name=\"color"
  },
  {
    "path": "sample/src/main/res/values/dimens.xml",
    "chars": 211,
    "preview": "<resources>\n    <!-- Default screen margins, per the Android Design guidelines. -->\n    <dimen name=\"activity_horizontal"
  },
  {
    "path": "sample/src/main/res/values/strings.xml",
    "chars": 245,
    "preview": "<resources>\n    <string name=\"app_name\">RxPalette Sample</string>\n    <string name=\"lorem\">Lorem ipsum dolor sit amet, c"
  },
  {
    "path": "sample/src/main/res/values/styles.xml",
    "chars": 383,
    "preview": "<resources>\n\n    <!-- Base application theme. -->\n    <style name=\"AppTheme\" parent=\"Theme.AppCompat.Light.DarkActionBar"
  },
  {
    "path": "sample/src/main/res/values-w820dp/dimens.xml",
    "chars": 358,
    "preview": "<resources>\n    <!-- Example customization of dimensions originally defined in res/values/dimens.xml\n         (such as s"
  },
  {
    "path": "settings.gradle",
    "chars": 103,
    "preview": "rootProject.name = 'rxpalette-root'\ninclude ':rxpalette'\ninclude ':rxpalette-kotlin'\ninclude ':sample'\n"
  }
]

// ... and 1 more files (download for full content)

About this extraction

This page contains the full source code of the hzsweers/RxPalette GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 46 files (59.0 KB), approximately 15.8k tokens, and a symbol index with 39 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.

Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.

Copied to clipboard!