gradle always downloads aar file (no android!)
See original GitHub issueHey there,
I want to include the Microsoft Speech SDK into my gradle project. It should run on linux.
This issue is for a: (mark with an x
)
- [ x ] bug report -> please search issues before submitting
- [ ] feature request
- [ ] documentation issue or request
- [ ] regression (a behavior that used to work and stopped in a new release)
Minimal steps to reproduce
- Create a gradle project
- Set repo and dep like this (converted from maven to gradle)
repositories {
maven {
url "https://csspeechstorage.blob.core.windows.net/maven"
}
}
dependencies {
implementation "com.microsoft.cognitiveservices.speech:client-sdk:1.0.1"
}
- Try to use sample code
- –> Package
com.microsoft.cognitiveservices.speech
is not available
Any log messages given by the failure
Could not find com.microsoft.cognitiveservices.speech
Expected/desired behavior
Download .jar file instead of the .aar file
OS and Version?
Ubuntu 18.04
Versions
1.0.1
Mention any other details that might be useful
It seems like gradle always downloads the aar file.
Thank you very much! 😃 Best regards
Issue Analytics
- State:
- Created 5 years ago
- Comments:11 (1 by maintainers)
Top Results From Across the Web
Gradle: download Dependencies of included aar-library
In this case, gradle downloads the dependencies using the pom file which will contains the dependencies list.
Read more >gradle folder in project - Help/Discuss
I have a complicated gradle build script that downloads artifacts from a repository and package them into an AAR file but the first...
Read more >Known issues with Android Studio and Android Gradle Plugin
This page tracks known issues with Android Studio Giraffe and Android Gradle plugin 8.1.0. If you experience an issue not already included here, ......
Read more >gradle can not download sources.jar in Android Studio ...
When I update my gradle version from 3.3 to 3.5. Then the sources.jar have not been download,So I can't see java source for...
Read more >Android Plugin with AAR dependency, Android studio ...
Hi all,. I've got an SDK which is exported as an AAR, the jar file is packaged with resources, the manifest etc etc....
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
hey @fmegen
thank you really much for your effort! After long period of failures I found a workaround for gradle. It is possible to declare an extension for the dependency:
Best regards
This is still an issue