Giter Site home page Giter Site logo

afollestad / arctic-icon-request Goto Github PK

View Code? Open in Web Editor NEW
59.0 12.0 11.0 5.92 MB

An easy to use Icon Request API for Kotlin, with traditional email capabilities plus the Arctic Manager API.

Home Page: https://af.codes

License: Apache License 2.0

Kotlin 100.00%
android icon-requests icon-packs email servers icon-request kotlin arctic-manager arctic

arctic-icon-request's Introduction

arctic-icon-request's People

Contributors

afollestad avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

arctic-icon-request's Issues

Sample giving error 429 on sending requests

  • I have verified there are no duplicate active or recent bugs, questions, or requests
  • I have verified that I am using the latest version of this library.
  • I have given my issue a non-generic title.
Include the following:
  • Library version: 4.0.3
  • Device OS version: 6.0.1
  • Device Manufacturer: Huawei
  • Device Name: Nexus 6P
Reproduction Steps
  1. Created package on arcticmanager.com
  2. changed sample project same as arcticmanager.com
  3. added API key received from arcticmanager.com
Expected Result

icon request gets synced with arcticmanger.com

Actual Result

Error 429

Can not get AppModel List java.lang.Exception: Failed to read appfilter.xml arctic-icon-request

I am integrate arctic icon request lib, here is my code

PolarConfig config = PolarConfig.create(getActivity())
//.apiHost("https://your-server.com") // optional, specify for Request Manager usage
.apiKey("API_KEY") // optional, specify for Request Manager usage
.emailRecipient(getResources().getString(R.string.dev_email)) // required IF you don't specify an API key
.appFilterName("appfilter.xml")
.cacheFolder(getActivity().getCacheDir().getAbsolutePath())
.errorOnInvalidDrawables(true)
.includeDeviceInfo(true)
.emailSubject("New Icon Request")
.emailHeader("These apps are unthemed!")
.emailFooter("Thank you!")
.build();

    request =
            PolarRequest.make(getActivity(), savedInstanceState)
                    .config(config)
                    .uriTransformer(
                            uri ->
                                    FileProvider.getUriForFile(
                                            getActivity(),
                                            BuildConfig.APPLICATION_ID + ".fileProvider",
                                            new File(uri.getPath())));

    request.loaded()
            .subscribe(loadResult -> {
                if (loadResult.success()) {
                    List<AppModel> apps = loadResult.apps();
                    // Use apps
                } else {
                    Exception error = loadResult.error();
                    // Use error
                }
            });

in Expectation i got below one
java.lang.Exception: Failed to read appfilter.xml arctic-icon-request

Thanks in Advance

Can't build with gradle

After adding

dependencies { compile 'com.afollestad:icon-request:1.3.8' }

The project is unable to build as it "Could not find com.afollestad:icon-request:1.3.8."

Full error log:

`Error:A problem occurred configuring project ':app'.

Could not resolve all dependencies for configuration ':app:_debugCompile'.
Could not find com.afollestad:icon-request:1.3.8.
Searched in the following locations:
file:/C:/Program Files/Android/Android Studio/gradle/m2repository/com/afollestad/icon-request/1.3.8/icon-request-1.3.8.pom
file:/C:/Program Files/Android/Android Studio/gradle/m2repository/com/afollestad/icon-request/1.3.8/icon-request-1.3.8.pom
https://jcenter.bintray.com/com/afollestad/icon-request/1.3.8/icon-request-1.3.8.pom
https://jcenter.bintray.com/com/afollestad/icon-request/1.3.8/icon-request-1.3.8.pom
file:/C:/Users/User 1/AppData/Local/Android/Sdk/extras/android/m2repository/com/afollestad/icon-request/1.3.8/icon-request-1.3.8.pom
file:/C:/Users/User 1/AppData/Local/Android/Sdk/extras/android/m2repository/com/afollestad/icon-request/1.3.8/icon-request-1.3.8.pom
file:/C:/Users/User 1/AppData/Local/Android/Sdk/extras/google/m2repository/com/afollestad/icon-request/1.3.8/icon-request-1.3.8.pom
file:/C:/Users/User 1/AppData/Local/Android/Sdk/extras/google/m2repository/com/afollestad/icon-request/1.3.8/icon-request-1.3.8.pom
Required by:
Android-Navigation-Drawer-master:app:unspecified`

Failed to resolve 'com.afollestad:icon-request:4.0.3'

  • [ Y] I have verified there are no duplicate active or recent bugs, questions, or requests
  • [Y ] I have verified that I am using the latest version of this library.
  • [ Y] I have given my issue a non-generic title.
Include the following:
  • Library version: 4.0.3
  • Device OS version: 8.1.0
  • Device Manufacturer: Huawei
  • Device Name: Nexus 6P

Also, please wrap Java with correct syntax highlighting.

Reproduction Steps
  1. add "compile 'com.afollestad:icon-request:4.0.3' " in dependencies
Expected Result

library gets synced

Actual Result

Error stating "Failed to resolve 'com.afollestad:icon-request:4.0.3'"

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.