How to receive notification of Android appcompat or support library update?

I wonder if there is a way to get notified of updates to Google Android libraries, such as com.android.support:support-v4, com.android.support:appcompat-v7etc.

I know what I could use compile "com.android.support:support-v4:18.0.+"with +in my build gradle. But it would be nice to get an email or have an RSS feed with new releses of all the different google android libraries. This would help a lot to update the dependencies and publish a new version of my application in the play store.

Edit : I found this url https://dl.google.com/android/repository/addon.xml which is used to update the local m2repo (which includes the above libraries).

+4
source share
3 answers

Your question is interesting, and it made me think about how I can solve the problem in order to find a solution. Here's my thought: I use ifttt myself the same way, and the missing point is monitoring xml data. Google search later, I just found this blog post , which is a detailed description of the steps required to receive email notifications of changes to a web page. HEY WHAT YOU NEED !!!

I have not tested, since I need to wait for the actual update, but here is the resulting RSS: page2RSS monitoring of Android add-ons

(9 ): page2rss 1 , /. Wachete, , , .

+1

"push" , xmpp . , , appcompat, .

gradle -versions-

. :

$ gradle dependencyUpdates
...
The following dependencies are using the latest milestone version:
 - com.android.support:appcompat-v7:23.1.1
 - com.android.support:cardview-v7:23.1.1
 - com.android.support:recyclerview-v7:23.1.1
 - com.android.support:support-annotations:23.1.1
 - com.android.support.test:rules:0.4.1
 - com.android.support.test:runner:0.4.1
 - com.github.ben-manes:gradle-versions-plugin:0.11.3

The following dependencies have later milestone versions:
 - com.android.tools.build:gradle [1.5.0-beta1 -> 2.0.0-alpha1]
 - com.google.android.gms:play-services-gcm [7.5.0 -> 8.3.0]
 - com.squareup.retrofit:retrofit [1.9.0 -> 2.0.0-beta2]
 - net.hockeyapp.android:HockeySDK [3.5.0 -> 3.7.0-beta.2]
 - org.hamcrest:hamcrest-library [1.1 -> 1.4-atlassian-1]
 - org.mockito:mockito-core [1.10.19 -> 2.0.31-beta]

, . json, , script - , cronjob json , .

+4
0

Source: https://habr.com/ru/post/1617786/


All Articles