Using serviceloader on android

前端 未结 5 1551
有刺的猬
有刺的猬 2020-11-30 08:07

I am very new to java and android development and to learn I am trying to start with an application to gather statistics and information like munin does. I am trying to be a

相关标签:
5条回答
  • 2020-11-30 08:34

    ServiceLoader is stuff from the Java language that is not really relevant on Android. I recommend not using it. If you just want to find a list of classes within your .apk to load, there are all kinds of ways to do this -- put in XMl file in res/xml that lists them, use reflection, annotations, etc.

    0 讨论(0)
  • 2020-11-30 08:35

    It is possible. You may want to check http://developer.android.com/reference/java/util/ServiceLoader.html

    0 讨论(0)
  • 2020-11-30 08:47

    I've figured out a solution that may work for some situations. Instead of ServiceLoader, I'm using the org.openide.util.Lookup class / library that comes with NetBeans - it is a superset of ServiceLoader. It does not require NetBeans itself and seems to work ok with Eclipse. It is necessary to replace whatever ServiceLoader functionality you are using in your application with Lookup equivalents, and add the org-openide-util-lookup library. Then, you can just do something like this:

    Lookup lookup = new ProxyLookup(Lookup.getDefault(),
                    Lookups.metaInfServices(myClass.getClassLoader(), "services/"));
    

    And move your ServiceLoader files from META-INF/services/ to services/.

    Note that, because of the ProxyLookup, this will continue to work on standard Java environments unchanged (i.e., in those cases it will continue to look in META-INF/services).

    Here is a link to the documentation for the library: http://bits.netbeans.org/dev/javadoc/org-openide-util-lookup/org/openide/util/lookup/Lookups.html

    UPDATE

    After working with this for a couple of days, it seems to function well - I move between environments (standard Java and Android) and it works properly in each location. The primary downside is having to manually copy the files to the /services directory.

    0 讨论(0)
  • 2020-11-30 08:49

    The META-INF folder is deliberately excluded from the APK by ApkBuilder; the only comment in ApkBuilder.java is "we need to exclude some other folder (like /META-INF)" but there is no other explanation.

    Even after adding META-INF with ant, you will still get in trouble if you want to use Proguard, which refuses to replace the content of META-INF/services/* files or rename them (that's another story, the author wants to keep Proguard agnostic).

    However, people using maven may want to check https://github.com/pa314159/maven-android-plugin (the branch named "modified"), that tries to solve both issues. It is a fork from the original "android-maven-plugin" I modified one month ago for my own Android projects.

    It also provides a patch for Proguard-4.7

    Hope this helps, any feedback is welcome.

    0 讨论(0)
  • 2020-11-30 08:51

    There is an open bug report against this issue. See https://code.google.com/p/android/issues/detail?id=59658

    0 讨论(0)
提交回复
热议问题