├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE.md ├── SUPPORT.md └── workflows │ └── issues.yml ├── CHANGELOG.md ├── README.md ├── example └── installreferrer │ ├── .gitignore │ └── simple │ └── src │ ├── Main-app.xml │ └── Main.as ├── images ├── appbar-kitkat.png └── promo.png └── lib ├── README.md ├── VERSION.md ├── androidx.appcompat.ane ├── androidx.browser.ane ├── androidx.cardview.ane ├── androidx.compose.ane ├── androidx.concurrent.ane ├── androidx.constraintlayout.ane ├── androidx.core.ane ├── androidx.databinding.ane ├── androidx.datastore.ane ├── androidx.emoji2.ane ├── androidx.exifinterface.ane ├── androidx.healthconnect.ane ├── androidx.lifecycle.ane ├── androidx.media3.ane ├── androidx.multidex.ane ├── androidx.privacysandbox.ane ├── androidx.recyclerview.ane ├── androidx.room.ane ├── androidx.transition.ane ├── androidx.vectordrawable.ane ├── androidx.webkit.ane ├── androidx.work.ane ├── com.android.installreferrer.ane ├── com.bumptech.glide.ane ├── com.google.android.datatransport.ane ├── com.google.android.material.ane ├── com.google.android.recaptcha.ane ├── com.google.code.gson.ane ├── com.google.dagger.ane ├── com.google.guava.ane ├── com.google.protobuflite.ane ├── com.jetbrains.kotlin.ane ├── com.jetbrains.kotlinx.ane ├── io.grpc.ane ├── io.insert.koin.koincore.ane ├── io.reactivex.ane ├── org.jacoco.ane ├── org.ow2.asm.ane └── swc ├── androidx.appcompat.swc ├── androidx.browser.swc ├── androidx.cardview.swc ├── androidx.compose.swc ├── androidx.concurrent.swc ├── androidx.constraintlayout.swc ├── androidx.core.swc ├── androidx.databinding.swc ├── androidx.datastore.swc ├── androidx.emoji2.swc ├── androidx.exifinterface.swc ├── androidx.healthconnect.swc ├── androidx.lifecycle.swc ├── androidx.media3.swc ├── androidx.multidex.swc ├── androidx.privacysandbox.swc ├── androidx.recyclerview.swc ├── androidx.room.swc ├── androidx.transition.swc ├── androidx.vectordrawable.swc ├── androidx.webkit.swc ├── androidx.work.swc ├── com.android.installreferrer.swc ├── com.bumptech.glide.swc ├── com.distriqt.androidx.Room.swc ├── com.distriqt.androidx.Work.swc ├── com.google.android.datatransport.swc ├── com.google.android.material.swc ├── com.google.android.recaptcha.swc ├── com.google.code.gson.swc ├── com.google.dagger.swc ├── com.google.guava.swc ├── com.google.protobuflite.swc ├── com.jetbrains.kotlin.swc ├── com.jetbrains.kotlinx.swc ├── io.grpc.swc ├── io.insert.koin.koincore.swc ├── io.reactivex.swc ├── org.jacoco.swc └── org.ow2.asm.swc /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [marchbold] 4 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 2 | If you are reporting a bug please make sure you fill out the following information, otherwise delete this template and ask your question. 3 | 4 | 5 | ##### Expected behaviour 6 | 7 | 8 | ##### Actual behaviour 9 | 10 | 11 | ##### Environment 12 | 13 | - AIR SDK version: 14 | - Device OS: 15 | - Device version: 16 | - Development IDE: 17 | - Development OS: 18 | 19 | 20 | ##### Logs 21 | 22 | Device logs if relevant -------------------------------------------------------------------------------- /.github/SUPPORT.md: -------------------------------------------------------------------------------- 1 | # Support 2 | 3 | As you are a subscribed user of our extensions there are several special support channels that you have access to. 4 | 5 | 6 | 7 | ## Check the documentation 8 | 9 | ### [Documentation Site](https://docs.airnativeextensions.com/) 10 | 11 | The best place to start is in the documentation. This forms the most up-to-date documentation for the extensions and is an important place to start using the extensions. 12 | 13 | Common issues include 14 | - Check you have all the required support extensions in the "Add the Extension" section; 15 | - Check you have correctly added and updated any manifest additions (Android) and Info Additions / Entitlements (iOS); 16 | 17 | 18 | ### Reference 19 | 20 | ASDocs document each of the classes, interfaces, events, functions and properties that you will be using. It is the main reference for the extension. If it's not in the guide you will find it here! 21 | 22 | 23 | ### Changelog 24 | 25 | The changelog contains a record of all the changes we have done to the extension. 26 | There are more details in github, referenced with releases but this is publicly available to see the work being done on the extension. 27 | 28 | 29 | 30 | ## Search the forum 31 | 32 | We use the issue tracker in this repository as a forum for subscribed users to ask questions and submit issues found with the extensions. 33 | 34 | When you have a question it is likely someone has had a similar issue before and you can find an answer by searching the closed issues. 35 | 36 | Simply use the search bar to search the repository and if you limit the results to **issues** you will see all related questions that have been asked by other users. 37 | 38 | [Forum](../../../issues?utf8=✓&q=is%3Aissue%20) 39 | 40 | 41 | ## Ask a question 42 | 43 | If you can't find a solution in the existing issues, then feel free to start a new issue to ask your question. 44 | Remember there are no silly questions and we are here to help you as best we can! 45 | We just ask that you provide as much information about your problem as possible, such as platform, versions, AIR SDK used etc. 46 | 47 | [Ask a question](../../../issues/new) 48 | -------------------------------------------------------------------------------- /.github/workflows/issues.yml: -------------------------------------------------------------------------------- 1 | name: 'Close stale issues and PR' 2 | on: 3 | schedule: 4 | - cron: '30 1 * * 2' 5 | 6 | jobs: 7 | stale: 8 | runs-on: ubuntu-latest 9 | steps: 10 | - uses: actions/stale@v4 11 | with: 12 | stale-issue-label: 'stale' 13 | exempt-issue-labels: 'enhancement' 14 | stale-issue-message: 'This issue is stale because it has been open 60 days with no activity. Remove stale label or comment or this will be closed in 5 days.' 15 | stale-pr-message: 'This PR is stale because it has been open 45 days with no activity. Remove stale label or comment or this will be closed in 10 days.' 16 | close-issue-message: 'This issue was closed because it has been stalled for 5 days with no activity.' 17 | days-before-stale: 60 18 | days-before-close: 5 19 | days-before-pr-close: -1 -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ###### 2024.12.05 [v3.0.0] 2 | 3 | ``` 4 | Major update - move to new gradle build process 5 | 6 | In this update we have moved all the extensions to use the newer gradle dependencies process. 7 | 8 | feat: move to gradle dependencies 9 | feat(androidx.databinding): add new androidx.databinding dependency 10 | ``` 11 | 12 | ###### 2024.09.19 [v2.9.2] 13 | 14 | ``` 15 | feat(dagger): update google dagger lib v2.41 16 | feat(x-recyclerview): update androidx recyclerview lib v1.3.2 17 | ``` 18 | 19 | ###### 2024.06.05 [v2.9.1] 20 | 21 | ``` 22 | feat(koin-core): add new dependency for io.insert-koin core library 23 | ``` 24 | 25 | ###### 2024.05.16 [v2.9.0] 26 | 27 | ``` 28 | feat(kotlin): update kotlin coroutines libraries 29 | feat(core): update core androidx libs to v1.13.1 (and compatible) 30 | feat(datastore): update datastore androidx libs to v1.1.1 31 | feat(guava): update guava dependency libraries 32 | feat(recyclerview): update recyclerview lib to v1.3.1 33 | ``` 34 | 35 | ###### 2024.04.22 [v2.8.4] 36 | 37 | ``` 38 | feat(jacoco): add new org.jacoco dependency 39 | feat(ow2-asm): add new org.ow2.asm dependency 40 | feat(x-privacysandbox): add new androidx.privacysandbox dependency 41 | ``` 42 | 43 | ###### 2024.04.17 [v2.8.2] 44 | 45 | ``` 46 | feat(datastore): add new androidx.datastore dependency 47 | feat(kotlinx): add new com.jetbrains.kotlinx dependency 48 | ``` 49 | 50 | ###### 2023.11.29 [v2.8.1] 51 | 52 | ``` 53 | fix(guava): update guava dependencies to resolve crash on older Android versions 54 | ``` 55 | 56 | ###### 2023.11.03 [v2.8.0] 57 | 58 | ``` 59 | feat(androidx.media3): add new androidx.media3 dependency 60 | ``` 61 | 62 | ###### 2023.10.24 [v2.7.1] 63 | 64 | ``` 65 | feat(x-healthconnect): update health connect to v1.1.0-alph05 66 | feat(x-work): update to include kotlin extensions 67 | ``` 68 | 69 | ###### 2023.07.21 [v2.7.0] 70 | 71 | ``` 72 | feat(androidx.core): update core lib to latest version 1.10.1 73 | feat(androidx.webkit): new androidx webkit dependency 74 | ``` 75 | 76 | ###### 2023.07.12 [v2.6.0] 77 | 78 | ``` 79 | feat(airpackage): add platforms to enable deployment restrictions to supported platforms 80 | feat(recaptcha): add recaptcha dependency lib v18.2.1 81 | ``` 82 | 83 | ###### 2023.07.04 [v2.5.2] 84 | 85 | ``` 86 | feat(datatransport): update internals to latest version 3.1.9 87 | feat(protobuf-lite): update to latest version 3.21.11 88 | feat(grpc): update to latest version 1.52.1 89 | feat(all): update to latest build process 90 | ``` 91 | 92 | ###### 2023.06.16 [v2.5.1] 93 | 94 | ``` 95 | fix: correct additional jar dependency names which were conflicting in particular extension combinations 96 | ``` 97 | 98 | ###### 2023.06.09 [v2.5.0] 99 | 100 | ``` 101 | feat(androidx.healthconnect): new dependency for health connect related features v1.1.0-alpha01 102 | feat(guava): add kotlin extension support 103 | fix(core): correct missing dependency from build 104 | ``` 105 | 106 | ###### 2023.03.27 [v2.4.0] 107 | 108 | ``` 109 | feat(gson): migrate to new gradle dependencies 110 | ``` 111 | 112 | ###### 2023.03.27 [v2.4.0] 113 | 114 | ``` 115 | feat(gson): migrate to new gradle dependencies 116 | ``` 117 | 118 | ###### 2023.03.27 [v2.4.0] 119 | 120 | ``` 121 | feat(kotlin): update to v1.8.10 122 | feat(browser): update sdk v1.5.0 123 | feat(constraintlayout): update sdk v2.1.4 124 | feat(emoji2): update sdk v1.3.0 125 | feat(exifinterface): update sdk v1.3.6 126 | feat(appcompat): update sdk v1.6.1 127 | feat(core): update sdk v1.9.0 128 | feat(installreferrer): update sdk v2.2 129 | feat(grpc): update internal sdk perfmark-api-0.23.0 130 | feat(material): update sdk v1.6.0 131 | feat(guava): update internal sdk animal-sniffer-annotations-1.19 132 | feat(gson): update sdk v2.8.9 133 | feat(datatransport): update internal sdk transport-runtime v3.1.8 134 | feat(dagger): update sdk v2.28.3 135 | feat(work): update sdk v2.8.1 136 | feat(room): update sdk v2.5.1 137 | feat(recyclerview): update sdk v1.3.0 138 | chore(cardview): update build 139 | chore(concurrent): update build 140 | chore(reactivex): update build 141 | chore(protobuf-lite): update build 142 | chore(glide): update build 143 | chore(vectordrawable): update build 144 | chore(transition): update build 145 | ``` 146 | 147 | ###### 2022.12.19 [v2.3.1] 148 | 149 | ``` 150 | feat(kotlin): update kotlin library to v1.5 151 | ``` 152 | 153 | ###### 2022.11.18 [v2.3.0] 154 | 155 | ``` 156 | feat(androidx.browser): update androidx.browser lib to v1.4.0 157 | ``` 158 | 159 | ###### 2022.06.23 [v2.2.2] 160 | 161 | ``` 162 | feat(build,scripts): correct case issue in android context/extension classes, update build scripts, correct version of dependencies 163 | feat(ios): remove all minimum ios version flags to ensure no conflicts 164 | ``` 165 | 166 | ###### 2022.03.15 [v2.2.1] 167 | 168 | ``` 169 | Update core extension lifecycle lib to latest compatible release 170 | ``` 171 | 172 | ###### 2022.03.14 [v2.2.0] 173 | 174 | ``` 175 | Add glide library 176 | ``` 177 | 178 | ###### 2022.03.09 [v2.1.0] 179 | 180 | ``` 181 | Update guava libs to 31.0.1 182 | ``` 183 | 184 | ###### 2022.03.08 [v2.0.0] 185 | 186 | ``` 187 | Latest androidx libraries 188 | ``` 189 | 190 | ###### 2021.09.13 [v1.6.2] 191 | 192 | ``` 193 | Added androidx.concurrent 194 | ``` 195 | 196 | ###### 2021.08.31 [v1.6.1] 197 | 198 | ``` 199 | Corrected build issue in 1.6.0 200 | ``` 201 | 202 | 203 | 204 | ###### 2021.08.20 [v1.6.0] 205 | 206 | ``` 207 | AIR packages for android dependency libraries 208 | ``` 209 | 210 | 211 | ###### 2021.02.03 [v1.5.0] 212 | 213 | ``` 214 | Updated to latest Android libraries 215 | ``` 216 | 217 | 218 | ###### 2021.01.20 [v1.4.0] 219 | 220 | ``` 221 | Added androidx room and work dependencies, updates for several support libs 222 | ``` 223 | 224 | 225 | ###### 2020.09.01 [v1.3.0] 226 | 227 | ``` 228 | Added new dependencies 229 | - androidx.exifinterface 230 | - com.google.guava 231 | - io.grpc 232 | - io.reativex 233 | 234 | Updated protobuf and androidx libs 235 | ``` 236 | 237 | 238 | ###### 2020.05.04 [v1.2.0] 239 | 240 | ``` 241 | Updated to latest androidx releases 242 | ``` 243 | 244 | 245 | ###### 2020.04.22 [v1.0.1] 246 | 247 | ``` 248 | Added androidx constraintlayout library and removed legacy extensions 249 | ``` 250 | 251 | 252 | ###### 2020.03.19 [v1.0.0] 253 | 254 | ``` 255 | Added install referrer functionality and docs 256 | ``` 257 | 258 | 259 | ###### 2020.03.18 [v1.0.0] 260 | 261 | ``` 262 | AndroidX release 263 | ``` 264 | 265 | 266 | ###### 2019.08.12 [v27.0.2] 267 | 268 | ``` 269 | Android 64bit support (resolves #2) 270 | ``` 271 | 272 | 273 | ###### 2019.02.26 [v27.0.2] 274 | 275 | ``` 276 | Updated minimum iOS version to 8.0 277 | ``` 278 | 279 | 280 | ###### 2018.08.08 [v27.0.2] 281 | 282 | ``` 283 | Added the install referrer ANE and updated dependencies 284 | ``` 285 | 286 | 287 | ###### 2018.03.24 [v27.0.2] 288 | 289 | ``` 290 | v27.0.2 release, adding design and recyclerview libraries 291 | ``` 292 | 293 | 294 | ###### 2018.03.10 [v27.1.0] 295 | 296 | ``` 297 | Update to version v27.1.0 298 | ``` 299 | 300 | 301 | ###### 2018.02.22 [v26.1.0] 302 | 303 | ``` 304 | Updated Android Support libs to v26.1.0 with all correct dependencies 305 | ``` 306 | 307 | 308 | ###### 2017.09.19 [v26.1.0] 309 | 310 | ``` 311 | Update to version v26.1.0 312 | ``` 313 | 314 | 315 | ###### 2017.05.30 [v25.3.1] 316 | 317 | ``` 318 | Update to version v25.3.1 319 | ``` 320 | 321 | 322 | ###### 2017.03.13 [v25.2.0] 323 | 324 | ``` 325 | Update to version 25.2.0 of the Android support libraries 326 | ``` 327 | 328 | 329 | ###### 2017.01.06 [v24.1.1] 330 | 331 | ``` 332 | Added card view v7 android support ANE 333 | ``` 334 | 335 | 336 | ###### 2016.12.15 [v24.1.1] 337 | 338 | ``` 339 | Update to version 24.1.1 of the Android support libraries 340 | ``` 341 | 342 | 343 | ###### 2016.11.22 [v24.1.0] 344 | 345 | ``` 346 | Update to version 24.1.0 of the Android support libraries 347 | ``` 348 | 349 | 350 | ###### 2016.08.10 [v24.0.0] 351 | 352 | ``` 353 | Updated to v24.0.0 354 | ``` 355 | 356 | 357 | ###### 2016.08.10 [v23.0.0] 358 | 359 | ``` 360 | Updated to v23.0.0 361 | ``` 362 | 363 | 364 | ###### 2016.07.16 365 | 366 | ``` 367 | Updated to be compatible with latest Core ANE 368 | ``` 369 | 370 | 371 | ###### 2015.11.18 372 | 373 | ``` 374 | Update to latest Android support lib 375 | ``` 376 | 377 | 378 | ###### 2015.11.05 379 | 380 | ``` 381 | Updated to latest SDK 382 | ``` 383 | 384 | 385 | ###### 2015.08.31 386 | 387 | ``` 388 | Initial release 389 | ``` 390 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | built by [distriqt //](https://airnativeextensions.com) 2 | 3 | ![](images/promo.png) 4 | 5 | 6 | # Android Support Libraries 7 | 8 | This repository contains a range of Android library extensions that are to be used as dependencies for distriqt extensions. However they can be used with any ANEs and are just packages containing the relevant libraries to avoid conflicts between extensions. 9 | 10 | 11 | ## AndroidX 12 | 13 | Shared library AIR Native Extensions that include aspects of the AndroidX Support Library. 14 | 15 | > 16 | > AndroidX is a major improvement to the original Android Support Library, which is no longer maintained. androidx packages fully replace the Support Library by providing feature parity and new libraries. 17 | > 18 | > These libraries offer backward-compatible versions of new features, provide useful UI elements 19 | > that are not included in the framework, and provide a range of utilities that apps can draw on. 20 | > 21 | 22 | 23 | ![Material Design on older Android versions](images/appbar-kitkat.png) 24 | 25 | 26 | For information on migrating to AndroidX see the documentation in the individual extensions or the general guide [here](https://github.com/distriqt/ANE-AndroidSupport/blob/master/lib/README.md#migration). 27 | 28 | 29 | 30 | > 31 | > The Android Support extensions are deprecated and should not be used in new applications. (These are the extensions starting with `com.distriqt.androidsupport.`) The Android Support extensions have been left here for legacy applications and people requiring to support older applications. 32 | > 33 | > They may be removed in the near future. 34 | > 35 | 36 | 37 | ## Android Libraries 38 | 39 | This repository also contains some generic Google Android libraries including: 40 | 41 | - GSON 42 | - Dagger 43 | - Data transport 44 | - Install Referrer 45 | - Material 46 | 47 | These libraries are often used by Android SDKs and are packaged here for usage with the distriqt extensions. 48 | 49 | 50 | 51 | ## Versions 52 | 53 | The versions of the libraries is published in the [version documentation](https://github.com/distriqt/ANE-AndroidSupport/blob/master/lib/VERSION.md). 54 | 55 | 56 | 57 | 58 | 59 | ## Native Extensions 60 | 61 | The highest quality and widest range of Native Extensions for Adobe AIR 62 | 63 | With over 40 extensions available, we are the largest provider of native extensions for AIR developers. 64 | Our mobile solutions allow developers to fast-forward development and focus on building great games and apps. 65 | 66 | https://airnativeextensions.com 67 | 68 | -------------------------------------------------------------------------------- /example/installreferrer/.gitignore: -------------------------------------------------------------------------------- 1 | out 2 | bin -------------------------------------------------------------------------------- /example/installreferrer/simple/src/Main-app.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Main 4 | Main 5 | Main 6 | 1.0.0 7 | 8 | 9 | SWF file name is set automatically at compile time 10 | true 11 | true 12 | true 13 | high 14 | 15 | 16 | 17 | 18 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | ]]> 30 | 31 | 32 | 33 | 34 | 35 | com.distriqt.Core 36 | androidx.core 37 | com.android.installreferrer 38 | 39 | 40 | 41 | -------------------------------------------------------------------------------- /example/installreferrer/simple/src/Main.as: -------------------------------------------------------------------------------- 1 | package 2 | { 3 | 4 | import com.distriqt.extension.android.installreferrer.InstallReferrer; 5 | import com.distriqt.extension.android.installreferrer.events.InstallReferrerEvent; 6 | 7 | import flash.display.Sprite; 8 | import flash.text.TextField; 9 | import flash.text.TextFormat; 10 | import flash.text.TextFormatAlign; 11 | 12 | 13 | public class Main extends Sprite 14 | { 15 | 16 | private var _text:TextField; 17 | 18 | public function Main() 19 | { 20 | _text = new TextField(); 21 | _text.defaultTextFormat = new TextFormat( "_typewriter", 24 ); 22 | _text.text = "Hello, World"; 23 | _text.height = 500; 24 | _text.width = 500; 25 | addChild( _text ); 26 | 27 | InstallReferrer.instance.addEventListener( InstallReferrerEvent.FEATURE_NOT_SUPPORTED, installReferrerEventHandler ); 28 | InstallReferrer.instance.addEventListener( InstallReferrerEvent.SERVICE_UNAVAILABLE, installReferrerEventHandler ); 29 | InstallReferrer.instance.addEventListener( InstallReferrerEvent.COMPLETE, installReferrerEventHandler ); 30 | InstallReferrer.instance.getInstallReferrer(); 31 | 32 | 33 | 34 | 35 | } 36 | 37 | 38 | private function installReferrerEventHandler( event:InstallReferrerEvent ):void 39 | { 40 | _text.text = event.type + "\n"; 41 | 42 | if (event.type == InstallReferrerEvent.COMPLETE) 43 | { 44 | _text.appendText( event.referrerUrl ); 45 | } 46 | 47 | } 48 | } 49 | 50 | } 51 | -------------------------------------------------------------------------------- /images/appbar-kitkat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distriqt/ANE-AndroidSupport/dec2f628e828d82866274011c79175d6aa42da5d/images/appbar-kitkat.png -------------------------------------------------------------------------------- /images/promo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distriqt/ANE-AndroidSupport/dec2f628e828d82866274011c79175d6aa42da5d/images/promo.png -------------------------------------------------------------------------------- /lib/README.md: -------------------------------------------------------------------------------- 1 | # AndroidX 2 | 3 | > AndroidX is a major improvement to the original Android Support Library, which is no longer maintained. androidx packages fully replace the Support Library by providing feature parity and new libraries. 4 | 5 | ## `androidx.core` 6 | 7 | This contains the core functionality of the androidx libraries and is the most commonly used extension. 8 | 9 | It replaces the `com.distriqt.androidsupport.V4` android support extension. 10 | 11 | ## `androidx.appcompat` 12 | 13 | This ANE provides some advanced application compatibility and layout components. 14 | 15 | It replaces the `com.distriqt.androidsupport.AppCompatV7` android support extension. 16 | 17 | ## `androidx.browser` 18 | 19 | This ANE is used by the Native Web View ANE to display custom chrome tabs on Android. 20 | 21 | It replaces the `com.distriqt.androidsupport.CustomTabs` android support extension. 22 | 23 | ## `androidx.cardview` 24 | 25 | This ANE is used to create Material Design style display cards. 26 | 27 | It replaces the `com.distriqt.androidsupport.CardViewV7` android support extension. 28 | 29 | ## `androidx.recyclerview` 30 | 31 | This ANE provides access to a RecyclerView component used in some SDKs to create views. 32 | 33 | It replaces the `com.distriqt.androidsupport.RecyclerView` android support extension. 34 | 35 | ## `com.android.installreferrer` 36 | 37 | This ANE provides access to installation referral information. 38 | 39 | It replaces the `com.distriqt.androidsupport.InstallReferrer` android support extension. 40 | 41 | ## `com.google.android.material` 42 | 43 | This ANE provides some advanced design, layout and transition functionality. 44 | 45 | It replaces the `com.distriqt.androidsupport.CardViewV7` android support extension. 46 | 47 | ## Migration 48 | 49 | As there will be no further updates to the Android Support libraries we are migrating all our extensions to AndroidX. Importantly Android Support libraries are not compatible with AndroidX so applications have to migrate all functionality from the support libraries to AndroidX together. 50 | 51 | **This means you cannot use older extensions that rely on the Android Support libraries with the latest builds of our extensions and you must upgrade all of our extensions simultaneously.** 52 | 53 | Generally migrating is fairly simple. 54 | 55 | Simply use the table below to swap the extensions you currently have in your application. 56 | 57 | | Android Support | Android X | 58 | | --------------------------------------------- | ----------------------------- | 59 | | `com.distriqt.androidsupport.V4` | `androidx.core` | 60 | | `com.distriqt.androidsupport.AppCompatV7` | `androidx.appcompat` | 61 | | `com.distriqt.androidsupport.CardViewV7` | `androidx.cardview` | 62 | | `com.distriqt.androidsupport.CustomTabs` | `androidx.browser` | 63 | | `com.distriqt.androidsupport.Design` | `com.google.android.material` | 64 | | `com.distriqt.androidsupport.InstallReferrer` | `com.android.installreferrer` | 65 | | `com.distriqt.androidsupport.RecyclerView` | `androidx.recyclerview` | 66 | 67 | We have included all these extensions in the existing Android Support repository and will continue to use this repository to hold any common Google provided Android libraries that aren't dependent on the Google Play Services. 68 | 69 | **When migrating we also suggest you check the manifest additions and "Add the Extension" documentation. Some of the extensions will require changes to the manifest, where references to the Android Support libraries were being used. And there may be additional extensions required.** 70 | 71 | > You should remove any android support ANEs you are using and replace them with the androidx equivalents. 72 | > Check the documentation on the extensions you are using to confirm which of the new extensions you will need. 73 | 74 | # Android Support ANEs 75 | 76 | > The Android Support extensions are deprecated and should not be used in new applications. This information is left here for legacy applications and people requiring to support older applications. 77 | 78 | The following summarises the functionality in each of the ANEs. Most are directly related to one ANE however several are shared amongst multiple extensions and may be in used in more the future. 79 | 80 | ## V4 81 | 82 | This is the most commonly used ANE. It contains the Support v4 library which is the most 83 | commonly used component of the Android Support Library and that most of the other support 84 | libraries rely upon. 85 | 86 | It contains a range of backward compatibility utilities that are used in many of our 87 | (and other providers) extensions. 88 | 89 | > **Note**: if you have been using the older `com.distriqt.AndroidSupport.ane` you should remove that 90 | > ANE and replace it with the equivalent `com.distriqt.androidsupport.V4.ane`. This is the new 91 | > version of this ANE and has been renamed to better identify the ANE with regards to its contents. 92 | 93 | ## CardViewV7 94 | 95 | This ANE is used to create Material Design style display cards. 96 | 97 | - [com.distriqt.FacebookAPI](https://airnativeextensions.com/extension/com.distriqt.FacebookAPI) 98 | 99 | ## CustomTabs 100 | 101 | This ANE is used by the Native Web View ANE to display custom chrome tabs on Android. 102 | 103 | - [com.distriqt.NativeWebView](https://airnativeextensions.com/extension/com.distriqt.NativeWebView) 104 | - [com.distriqt.FacebookAPI](https://airnativeextensions.com/extension/com.distriqt.FacebookAPI) 105 | 106 | ## AppCompatV7 107 | 108 | This ANE provides some advanced application compatibility and layout components. 109 | 110 | - [com.distriqt.Dialog](https://airnativeextensions.com/extension/com.distriqt.Dialog) 111 | - [com.distriqt.FacebookAPI](https://airnativeextensions.com/extension/com.distriqt.FacebookAPI) 112 | 113 | ## Design 114 | 115 | This ANE provides some advanced design, layout and transition functionality. 116 | 117 | - [com.distriqt.FacebookAPI](https://airnativeextensions.com/extension/com.distriqt.FacebookAPI) 118 | 119 | ## RecyclerViewV7 120 | 121 | This ANE provides access to a RecyclerView component used in some SDKs to create views. 122 | 123 | - [com.distriqt.FacebookAPI](https://airnativeextensions.com/extension/com.distriqt.FacebookAPI) 124 | -------------------------------------------------------------------------------- /lib/VERSION.md: -------------------------------------------------------------------------------- 1 | ## Version Details 2 | 3 | | Extension | Version | Android Lib | iOS Lib | 4 | | --- | --- | --- | --- | 5 | | com.bumptech.glide | 5.0.0 | 4.12.0 | | 6 | | com.google.dagger | 3.0.0 | 2.41 | | 7 | | com.google.android.datatransport | 4.0.0 | 3.0.0 | | 8 | | com.google.code.gson | 3.0.0 | 2.8.9 | | 9 | | com.google.guava | 32.0.0 | 31.0.1 | | 10 | | com.google.android.material | 2.0.0 | 1.6.0 | | 11 | | com.google.protobuflite | 4.0.0 | 3.21.12 | | 12 | | com.google.android.recaptcha | 19.0.0 | 18.2.1 | | 13 | | io.grpc | 2.0.0 | 1.52.1 | | 14 | | com.android.installreferrer | 3.0.0 | 2.2.0 | | 15 | | org.jacoco | 1.0.0 | 0.8.8 | 0.0.0 | 16 | | io.insert.koin.koincore | 4.0.0 | 3.5.3 | | 17 | | com.jetbrains.kotlin | 2.0.0 | 1.8.22 | | 18 | | com.jetbrains.kotlinx | 2.0.0 | 1.4.1 | 0.0.0 | 19 | | org.ow2.asm | 10.0.0 | 9.2 | 0.0.0 | 20 | | io.reactivex | 3.0.0 | 2.0.2 | | 21 | | androidx.appcompat | 2.0.0 | 1.6.1 | | 22 | | androidx.browser | 2.0.0 | 1.5.0 | | 23 | | androidx.cardview | 2.0.0 | 1.0.0 | | 24 | | androidx.compose | 2.0.0 | 1.1.2 | 0.0.0 | 25 | | androidx.concurrent | 2.0.0 | 1.1.0 | | 26 | | androidx.constraintlayout | 3.0.0 | 2.1.4 | | 27 | | androidx.core | 2.0.0 | 1.13.1 | | 28 | | androidx.databinding | 9.0.0 | 8.7.2 | | 29 | | androidx.datastore | 2.0.0 | 1.1.1 | 0.0.0 | 30 | | androidx.emoji2 | 2.0.0 | 1.3.0 | | 31 | | androidx.exifinterface | 2.0.0 | 1.3.6 | | 32 | | androidx.healthconnect | 2.0.0 | 1.1.0-alpha05 | | 33 | | androidx.lifecycle | 3.0.0 | 2.6.2 | 0.0.0 | 34 | | androidx.media3 | 1.0.0 | 2.19.1 | | 35 | | androidx.multidex | 3.0.0 | 2.0.1 | | 36 | | androidx.privacysandbox | 2.0.0 | 1.1.0-beta06 | 0.0.0 | 37 | | androidx.recyclerview | 2.0.0 | 1.3.2 | | 38 | | androidx.room | 3.0.0 | 2.5.1 | | 39 | | androidx.transition | 2.0.0 | 1.4.1 | | 40 | | androidx.vectordrawable | 2.0.0 | 1.1.0 | | 41 | | androidx.webkit | 2.0.0 | 1.7.0 | | 42 | | androidx.work | 3.0.0 | 2.8.1 | | 43 | -------------------------------------------------------------------------------- /lib/androidx.appcompat.ane: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distriqt/ANE-AndroidSupport/dec2f628e828d82866274011c79175d6aa42da5d/lib/androidx.appcompat.ane -------------------------------------------------------------------------------- /lib/androidx.browser.ane: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distriqt/ANE-AndroidSupport/dec2f628e828d82866274011c79175d6aa42da5d/lib/androidx.browser.ane -------------------------------------------------------------------------------- /lib/androidx.cardview.ane: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distriqt/ANE-AndroidSupport/dec2f628e828d82866274011c79175d6aa42da5d/lib/androidx.cardview.ane -------------------------------------------------------------------------------- /lib/androidx.compose.ane: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distriqt/ANE-AndroidSupport/dec2f628e828d82866274011c79175d6aa42da5d/lib/androidx.compose.ane -------------------------------------------------------------------------------- /lib/androidx.concurrent.ane: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distriqt/ANE-AndroidSupport/dec2f628e828d82866274011c79175d6aa42da5d/lib/androidx.concurrent.ane -------------------------------------------------------------------------------- /lib/androidx.constraintlayout.ane: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distriqt/ANE-AndroidSupport/dec2f628e828d82866274011c79175d6aa42da5d/lib/androidx.constraintlayout.ane -------------------------------------------------------------------------------- /lib/androidx.core.ane: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distriqt/ANE-AndroidSupport/dec2f628e828d82866274011c79175d6aa42da5d/lib/androidx.core.ane -------------------------------------------------------------------------------- /lib/androidx.databinding.ane: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distriqt/ANE-AndroidSupport/dec2f628e828d82866274011c79175d6aa42da5d/lib/androidx.databinding.ane -------------------------------------------------------------------------------- /lib/androidx.datastore.ane: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distriqt/ANE-AndroidSupport/dec2f628e828d82866274011c79175d6aa42da5d/lib/androidx.datastore.ane -------------------------------------------------------------------------------- /lib/androidx.emoji2.ane: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distriqt/ANE-AndroidSupport/dec2f628e828d82866274011c79175d6aa42da5d/lib/androidx.emoji2.ane -------------------------------------------------------------------------------- /lib/androidx.exifinterface.ane: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distriqt/ANE-AndroidSupport/dec2f628e828d82866274011c79175d6aa42da5d/lib/androidx.exifinterface.ane -------------------------------------------------------------------------------- /lib/androidx.healthconnect.ane: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distriqt/ANE-AndroidSupport/dec2f628e828d82866274011c79175d6aa42da5d/lib/androidx.healthconnect.ane -------------------------------------------------------------------------------- /lib/androidx.lifecycle.ane: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distriqt/ANE-AndroidSupport/dec2f628e828d82866274011c79175d6aa42da5d/lib/androidx.lifecycle.ane -------------------------------------------------------------------------------- /lib/androidx.media3.ane: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distriqt/ANE-AndroidSupport/dec2f628e828d82866274011c79175d6aa42da5d/lib/androidx.media3.ane -------------------------------------------------------------------------------- /lib/androidx.multidex.ane: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distriqt/ANE-AndroidSupport/dec2f628e828d82866274011c79175d6aa42da5d/lib/androidx.multidex.ane -------------------------------------------------------------------------------- /lib/androidx.privacysandbox.ane: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distriqt/ANE-AndroidSupport/dec2f628e828d82866274011c79175d6aa42da5d/lib/androidx.privacysandbox.ane -------------------------------------------------------------------------------- /lib/androidx.recyclerview.ane: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distriqt/ANE-AndroidSupport/dec2f628e828d82866274011c79175d6aa42da5d/lib/androidx.recyclerview.ane -------------------------------------------------------------------------------- /lib/androidx.room.ane: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distriqt/ANE-AndroidSupport/dec2f628e828d82866274011c79175d6aa42da5d/lib/androidx.room.ane -------------------------------------------------------------------------------- /lib/androidx.transition.ane: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distriqt/ANE-AndroidSupport/dec2f628e828d82866274011c79175d6aa42da5d/lib/androidx.transition.ane -------------------------------------------------------------------------------- /lib/androidx.vectordrawable.ane: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distriqt/ANE-AndroidSupport/dec2f628e828d82866274011c79175d6aa42da5d/lib/androidx.vectordrawable.ane -------------------------------------------------------------------------------- /lib/androidx.webkit.ane: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distriqt/ANE-AndroidSupport/dec2f628e828d82866274011c79175d6aa42da5d/lib/androidx.webkit.ane -------------------------------------------------------------------------------- /lib/androidx.work.ane: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distriqt/ANE-AndroidSupport/dec2f628e828d82866274011c79175d6aa42da5d/lib/androidx.work.ane -------------------------------------------------------------------------------- /lib/com.android.installreferrer.ane: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distriqt/ANE-AndroidSupport/dec2f628e828d82866274011c79175d6aa42da5d/lib/com.android.installreferrer.ane -------------------------------------------------------------------------------- /lib/com.bumptech.glide.ane: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distriqt/ANE-AndroidSupport/dec2f628e828d82866274011c79175d6aa42da5d/lib/com.bumptech.glide.ane -------------------------------------------------------------------------------- /lib/com.google.android.datatransport.ane: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distriqt/ANE-AndroidSupport/dec2f628e828d82866274011c79175d6aa42da5d/lib/com.google.android.datatransport.ane -------------------------------------------------------------------------------- /lib/com.google.android.material.ane: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distriqt/ANE-AndroidSupport/dec2f628e828d82866274011c79175d6aa42da5d/lib/com.google.android.material.ane -------------------------------------------------------------------------------- /lib/com.google.android.recaptcha.ane: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distriqt/ANE-AndroidSupport/dec2f628e828d82866274011c79175d6aa42da5d/lib/com.google.android.recaptcha.ane -------------------------------------------------------------------------------- /lib/com.google.code.gson.ane: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distriqt/ANE-AndroidSupport/dec2f628e828d82866274011c79175d6aa42da5d/lib/com.google.code.gson.ane -------------------------------------------------------------------------------- /lib/com.google.dagger.ane: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distriqt/ANE-AndroidSupport/dec2f628e828d82866274011c79175d6aa42da5d/lib/com.google.dagger.ane -------------------------------------------------------------------------------- /lib/com.google.guava.ane: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distriqt/ANE-AndroidSupport/dec2f628e828d82866274011c79175d6aa42da5d/lib/com.google.guava.ane -------------------------------------------------------------------------------- /lib/com.google.protobuflite.ane: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distriqt/ANE-AndroidSupport/dec2f628e828d82866274011c79175d6aa42da5d/lib/com.google.protobuflite.ane -------------------------------------------------------------------------------- /lib/com.jetbrains.kotlin.ane: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distriqt/ANE-AndroidSupport/dec2f628e828d82866274011c79175d6aa42da5d/lib/com.jetbrains.kotlin.ane -------------------------------------------------------------------------------- /lib/com.jetbrains.kotlinx.ane: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distriqt/ANE-AndroidSupport/dec2f628e828d82866274011c79175d6aa42da5d/lib/com.jetbrains.kotlinx.ane -------------------------------------------------------------------------------- /lib/io.grpc.ane: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distriqt/ANE-AndroidSupport/dec2f628e828d82866274011c79175d6aa42da5d/lib/io.grpc.ane -------------------------------------------------------------------------------- /lib/io.insert.koin.koincore.ane: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distriqt/ANE-AndroidSupport/dec2f628e828d82866274011c79175d6aa42da5d/lib/io.insert.koin.koincore.ane -------------------------------------------------------------------------------- /lib/io.reactivex.ane: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distriqt/ANE-AndroidSupport/dec2f628e828d82866274011c79175d6aa42da5d/lib/io.reactivex.ane -------------------------------------------------------------------------------- /lib/org.jacoco.ane: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distriqt/ANE-AndroidSupport/dec2f628e828d82866274011c79175d6aa42da5d/lib/org.jacoco.ane -------------------------------------------------------------------------------- /lib/org.ow2.asm.ane: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distriqt/ANE-AndroidSupport/dec2f628e828d82866274011c79175d6aa42da5d/lib/org.ow2.asm.ane -------------------------------------------------------------------------------- /lib/swc/androidx.appcompat.swc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distriqt/ANE-AndroidSupport/dec2f628e828d82866274011c79175d6aa42da5d/lib/swc/androidx.appcompat.swc -------------------------------------------------------------------------------- /lib/swc/androidx.browser.swc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distriqt/ANE-AndroidSupport/dec2f628e828d82866274011c79175d6aa42da5d/lib/swc/androidx.browser.swc -------------------------------------------------------------------------------- /lib/swc/androidx.cardview.swc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distriqt/ANE-AndroidSupport/dec2f628e828d82866274011c79175d6aa42da5d/lib/swc/androidx.cardview.swc -------------------------------------------------------------------------------- /lib/swc/androidx.compose.swc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distriqt/ANE-AndroidSupport/dec2f628e828d82866274011c79175d6aa42da5d/lib/swc/androidx.compose.swc -------------------------------------------------------------------------------- /lib/swc/androidx.concurrent.swc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distriqt/ANE-AndroidSupport/dec2f628e828d82866274011c79175d6aa42da5d/lib/swc/androidx.concurrent.swc -------------------------------------------------------------------------------- /lib/swc/androidx.constraintlayout.swc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distriqt/ANE-AndroidSupport/dec2f628e828d82866274011c79175d6aa42da5d/lib/swc/androidx.constraintlayout.swc -------------------------------------------------------------------------------- /lib/swc/androidx.core.swc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distriqt/ANE-AndroidSupport/dec2f628e828d82866274011c79175d6aa42da5d/lib/swc/androidx.core.swc -------------------------------------------------------------------------------- /lib/swc/androidx.databinding.swc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distriqt/ANE-AndroidSupport/dec2f628e828d82866274011c79175d6aa42da5d/lib/swc/androidx.databinding.swc -------------------------------------------------------------------------------- /lib/swc/androidx.datastore.swc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distriqt/ANE-AndroidSupport/dec2f628e828d82866274011c79175d6aa42da5d/lib/swc/androidx.datastore.swc -------------------------------------------------------------------------------- /lib/swc/androidx.emoji2.swc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distriqt/ANE-AndroidSupport/dec2f628e828d82866274011c79175d6aa42da5d/lib/swc/androidx.emoji2.swc -------------------------------------------------------------------------------- /lib/swc/androidx.exifinterface.swc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distriqt/ANE-AndroidSupport/dec2f628e828d82866274011c79175d6aa42da5d/lib/swc/androidx.exifinterface.swc -------------------------------------------------------------------------------- /lib/swc/androidx.healthconnect.swc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distriqt/ANE-AndroidSupport/dec2f628e828d82866274011c79175d6aa42da5d/lib/swc/androidx.healthconnect.swc -------------------------------------------------------------------------------- /lib/swc/androidx.lifecycle.swc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distriqt/ANE-AndroidSupport/dec2f628e828d82866274011c79175d6aa42da5d/lib/swc/androidx.lifecycle.swc -------------------------------------------------------------------------------- /lib/swc/androidx.media3.swc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distriqt/ANE-AndroidSupport/dec2f628e828d82866274011c79175d6aa42da5d/lib/swc/androidx.media3.swc -------------------------------------------------------------------------------- /lib/swc/androidx.multidex.swc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distriqt/ANE-AndroidSupport/dec2f628e828d82866274011c79175d6aa42da5d/lib/swc/androidx.multidex.swc -------------------------------------------------------------------------------- /lib/swc/androidx.privacysandbox.swc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distriqt/ANE-AndroidSupport/dec2f628e828d82866274011c79175d6aa42da5d/lib/swc/androidx.privacysandbox.swc -------------------------------------------------------------------------------- /lib/swc/androidx.recyclerview.swc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distriqt/ANE-AndroidSupport/dec2f628e828d82866274011c79175d6aa42da5d/lib/swc/androidx.recyclerview.swc -------------------------------------------------------------------------------- /lib/swc/androidx.room.swc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distriqt/ANE-AndroidSupport/dec2f628e828d82866274011c79175d6aa42da5d/lib/swc/androidx.room.swc -------------------------------------------------------------------------------- /lib/swc/androidx.transition.swc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distriqt/ANE-AndroidSupport/dec2f628e828d82866274011c79175d6aa42da5d/lib/swc/androidx.transition.swc -------------------------------------------------------------------------------- /lib/swc/androidx.vectordrawable.swc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distriqt/ANE-AndroidSupport/dec2f628e828d82866274011c79175d6aa42da5d/lib/swc/androidx.vectordrawable.swc -------------------------------------------------------------------------------- /lib/swc/androidx.webkit.swc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distriqt/ANE-AndroidSupport/dec2f628e828d82866274011c79175d6aa42da5d/lib/swc/androidx.webkit.swc -------------------------------------------------------------------------------- /lib/swc/androidx.work.swc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distriqt/ANE-AndroidSupport/dec2f628e828d82866274011c79175d6aa42da5d/lib/swc/androidx.work.swc -------------------------------------------------------------------------------- /lib/swc/com.android.installreferrer.swc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distriqt/ANE-AndroidSupport/dec2f628e828d82866274011c79175d6aa42da5d/lib/swc/com.android.installreferrer.swc -------------------------------------------------------------------------------- /lib/swc/com.bumptech.glide.swc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distriqt/ANE-AndroidSupport/dec2f628e828d82866274011c79175d6aa42da5d/lib/swc/com.bumptech.glide.swc -------------------------------------------------------------------------------- /lib/swc/com.distriqt.androidx.Room.swc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distriqt/ANE-AndroidSupport/dec2f628e828d82866274011c79175d6aa42da5d/lib/swc/com.distriqt.androidx.Room.swc -------------------------------------------------------------------------------- /lib/swc/com.distriqt.androidx.Work.swc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distriqt/ANE-AndroidSupport/dec2f628e828d82866274011c79175d6aa42da5d/lib/swc/com.distriqt.androidx.Work.swc -------------------------------------------------------------------------------- /lib/swc/com.google.android.datatransport.swc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distriqt/ANE-AndroidSupport/dec2f628e828d82866274011c79175d6aa42da5d/lib/swc/com.google.android.datatransport.swc -------------------------------------------------------------------------------- /lib/swc/com.google.android.material.swc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distriqt/ANE-AndroidSupport/dec2f628e828d82866274011c79175d6aa42da5d/lib/swc/com.google.android.material.swc -------------------------------------------------------------------------------- /lib/swc/com.google.android.recaptcha.swc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distriqt/ANE-AndroidSupport/dec2f628e828d82866274011c79175d6aa42da5d/lib/swc/com.google.android.recaptcha.swc -------------------------------------------------------------------------------- /lib/swc/com.google.code.gson.swc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distriqt/ANE-AndroidSupport/dec2f628e828d82866274011c79175d6aa42da5d/lib/swc/com.google.code.gson.swc -------------------------------------------------------------------------------- /lib/swc/com.google.dagger.swc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distriqt/ANE-AndroidSupport/dec2f628e828d82866274011c79175d6aa42da5d/lib/swc/com.google.dagger.swc -------------------------------------------------------------------------------- /lib/swc/com.google.guava.swc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distriqt/ANE-AndroidSupport/dec2f628e828d82866274011c79175d6aa42da5d/lib/swc/com.google.guava.swc -------------------------------------------------------------------------------- /lib/swc/com.google.protobuflite.swc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distriqt/ANE-AndroidSupport/dec2f628e828d82866274011c79175d6aa42da5d/lib/swc/com.google.protobuflite.swc -------------------------------------------------------------------------------- /lib/swc/com.jetbrains.kotlin.swc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distriqt/ANE-AndroidSupport/dec2f628e828d82866274011c79175d6aa42da5d/lib/swc/com.jetbrains.kotlin.swc -------------------------------------------------------------------------------- /lib/swc/com.jetbrains.kotlinx.swc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distriqt/ANE-AndroidSupport/dec2f628e828d82866274011c79175d6aa42da5d/lib/swc/com.jetbrains.kotlinx.swc -------------------------------------------------------------------------------- /lib/swc/io.grpc.swc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distriqt/ANE-AndroidSupport/dec2f628e828d82866274011c79175d6aa42da5d/lib/swc/io.grpc.swc -------------------------------------------------------------------------------- /lib/swc/io.insert.koin.koincore.swc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distriqt/ANE-AndroidSupport/dec2f628e828d82866274011c79175d6aa42da5d/lib/swc/io.insert.koin.koincore.swc -------------------------------------------------------------------------------- /lib/swc/io.reactivex.swc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distriqt/ANE-AndroidSupport/dec2f628e828d82866274011c79175d6aa42da5d/lib/swc/io.reactivex.swc -------------------------------------------------------------------------------- /lib/swc/org.jacoco.swc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distriqt/ANE-AndroidSupport/dec2f628e828d82866274011c79175d6aa42da5d/lib/swc/org.jacoco.swc -------------------------------------------------------------------------------- /lib/swc/org.ow2.asm.swc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/distriqt/ANE-AndroidSupport/dec2f628e828d82866274011c79175d6aa42da5d/lib/swc/org.ow2.asm.swc --------------------------------------------------------------------------------