It's the concept refresher that I really appreciate anymore but realistically these are the types of things that people are going to be doing 75% of the Android jobs out there. You may be working on some smaller subset or module, but you will definitely need to know how to create libraries import the libraries and use them
Thank you man! Before this video, i could not find how to fix my problem gradle not resolving the dependency. It turned out we should put the maven{ url... } in the settings.gradle file in repositories{} section
Will the library using an older version of compose work in an android project running on newer version of compose? for e.g.library uses compose_version='1.0.2' and project uses compose_version='1.0.3'.
That’s why you have the api documentation where you should specify to users which version they should use , and also you should keep your library updated
Is Lenovo legion 5 pro good for android and web development purposes? Processor and memory features - • 11th generation, core i7 • 16GB RAM, 1TB SSD • 6GB graphic/ NVIDIA GeForce RTX 3060 Or I should go for MacBook Air or Pro m1 With 16GB unified memory and 1TB SSD...?
Thanks for the great explanation. Just wondering, is this method also applicable for Gitlab? Also how if the repository is private (for internal company usage purpose), can it still become a library?
it was amazing and so easy , i have one feedback if possible also explain how to update version, also any cicd pipeline posible make direct release from android studio without going jitpack and do get it everytime.
Hey phillip, Great video. Does the same method also work for KMM project. I have my UI in commonMain. Do I have to add yml file to shared or the rootProject folder. I've created xcframework for the shared module which works fine on iOS and created maven local lib to use it in my android app. I need to make the library available through gitlab for android. Does this method work for that?
Hi Philipp. I have created a new module, 'ClassifyMole', which is a class-file ('ClassifyUtil'') with a function inside, 'classifyImage", which includes a variable carrying a tensorflow light model. I want this function to be shared by 'CameraShootMole' and 'GalleryCheckMole' files in the main app. However, the 'classifyImage' function in the module remains inactive (never used) and the 'classifyImage' portion of line 'ClassifyUtil.classifyImage(image)' in both the above mentioned files of the main app is in red. What should I do to activate the function to be shared? Should I do any changes to build.gradle files? Needles to say that I have imported the new module in both files of the main app, and also included the implement project (':ClassifyMole') line in the build gradle of the main app. Thanks.
Hello bro I am making one application for doctors in that I got stuck at one point. In my app I have add config of selected multiple diseases and after that by clicking on anyone disease it will redirect to you the another fragment.so this is only for 1 disease I have approx 20 types of disease so for that building 20 fragment is not good. so can you guide me how I have to do that? I am looking forward from helping by you Thank you .
in the jitpack build log for your github release there should be another error somewhere above it which is the underlying problem, for me it was sdk.dir is incorrect so I had to use jitpack web ui to specify a linux based directory to my android sdk as jitpack uses linux environment and i use windows. you dont need a jitpack.yml file if you use the web ui called jitpack ci as you can specify all the required directories and parameters there
Very less informational video, there is no clear information about yml file and those lines you pasted on build.gradle file. Make a video on those in details. What the meaning of those lines you have written and the use case of yml file.
Finally I can build my hello world library
cool lib 😅🤣
😂😂😂😂
😂😂😂
yea this is good idea
@Süleyman Korkmaz hey man:D
Super useful.
I've read about adding modules to projects but have never seen it done.
Seems like a great way to template your work.
Amazing man! Simple and pretty straight forward! Please keep creating more android content!
It's the concept refresher that I really appreciate anymore but realistically these are the types of things that people are going to be doing 75% of the Android jobs out there. You may be working on some smaller subset or module, but you will definitely need to know how to create libraries import the libraries and use them
Super useful. I am able to publish my first lib successfully and use it in other projects.
I like the way you choosing the topic for ur videos, every video is very useful, keep it up💚
Thanks a lot 😊
Thank you man! Before this video, i could not find how to fix my problem gradle not resolving the dependency. It turned out we should put the maven{ url... } in the settings.gradle file in repositories{} section
Mega! By looking for a video like this forever! Thanks Phil!
I have two questions.
1) why upload the app root module?
2)can we only upload our "Module" and it can run?
How was it? did you try only uploading the "Module"?
Will the library using an older version of compose work in an android project running on newer version of compose? for e.g.library uses compose_version='1.0.2' and project uses compose_version='1.0.3'.
That’s why you have the api documentation where you should specify to users which version they should use , and also you should keep your library updated
All your courses are rare Gems, Hoping to get one of your paid courses.
Thanks a lot!
Thanx man you always come with best stuff ,thanx again
Much better and simple than maven documentation.
thank you Philip you made me love jetpack compose
One more gold content. Thanks a lot.
Nicely explained!!
Will wait for your next videos.
Thanks!!
Please do a video on how to build and publish a kmm library, I face difficulties doing that.
Hey philipp .. can you make a tutorial on how to modularize our project please ?
I was searching for this, thanks a lot
Super its really useful you really help me where i am stuck in blocker but its solved now thank you so much
Thanks for sharing it, now I have also my library ❤️ and I like your All video
This is exactly what I need :)
Waiting this topic from you =)
How can I show design created in compose from the library, without my client application contents compose dependencies?
Thank you phillip, this is what i need
Please guide me how to push the android library module to maven repository (sonatype)
Is Lenovo legion 5 pro good for android and web development purposes?
Processor and memory features -
• 11th generation, core i7
• 16GB RAM, 1TB SSD
• 6GB graphic/ NVIDIA GeForce RTX 3060
Or I should go for MacBook Air or Pro m1
With 16GB unified memory and 1TB SSD...?
The Lenovo setup is enough, but with a Mac you can also develop for ios.
Thanks for the great explanation.
Just wondering, is this method also applicable for Gitlab?
Also how if the repository is private (for internal company usage purpose), can it still become a library?
Thank you bro. You saved my day!
Waiting for this so long.
please have a video about publish an app because you already have a video about r8 and build release variant too, thank you
it was amazing and so easy , i have one feedback if possible also explain how to update version, also any cicd pipeline posible make direct release from android studio without going jitpack and do get it everytime.
Thank you very much for another great video. Please do a guide on how to modularise efficiently an app. Many thanks!
Following your github I could predict it :3 thx man
Amazing, what a useful video. You have my like master.
I was literally wondering about that a few weeks ago
Does this approach will only work for Jetpack Compose Project?
or It will also work for normal Android Projects too?
For all projects
@@PhilippLackner Thanks, it is super useful 👍
I am creating a library in a forked repository. So, can I release the library in the forked repo, or I will have to wait until the PR is merged?
How can you create a kotlin class library in Eclipse IDE and import and use in Android studio?
Say you want an independent model class library.
Hey phillip,
Great video. Does the same method also work for KMM project. I have my UI in commonMain. Do I have to add yml file to shared or the rootProject folder. I've created xcframework for the shared module which works fine on iOS and created maven local lib to use it in my android app. I need to make the library available through gitlab for android. Does this method work for that?
Thank you, I love this topic
Thankyou Thankyou Thankyou 🔥
Hi, which is the right way to publish maven libraty using gradle kts ?
Thanks bro for useful content!
Very helpful. Excellent content.
hey Philipp! great Vids, Think we can have a demo on how to publish a library from a private bitbucket repository?
amazing job, bro!
video title suggestion: migration from Groovy to Gradle kts
Hi Philipp. I have created a new module, 'ClassifyMole', which is a class-file ('ClassifyUtil'') with a function inside, 'classifyImage", which includes a variable carrying a tensorflow light model. I want this function to be shared by 'CameraShootMole' and 'GalleryCheckMole' files in the main app. However, the 'classifyImage' function in the module remains inactive (never used) and the 'classifyImage' portion of line 'ClassifyUtil.classifyImage(image)' in both the above mentioned files of the main app is in red. What should I do to activate the function to be shared? Should I do any changes to build.gradle files? Needles to say that I have imported the new module in both files of the main app, and also included the implement project (':ClassifyMole') line in the build gradle of the main app. Thanks.
hi philipp ! can you do a video on modularisation
Thanks a lot, super useful
You saved me, thanks 🥰
Sir, I have not understood this, what will have to be added in it artifactId
Thank you man
Love this topic... 🔥
I cannot resolve "release(MavenPubblication)" i use Kotlin DSL instead of groovy. What am i doing wrong?
afterEvaluate {
publishing {
publications {
create("release") {
from(components["release"])
groupId = "VijaiGunasekar"
artifactId = "ChatLibrary"
version = "1.0.0"
}
}
}
}
Good Job bro 😍
Thanks
Great thank you!
Hello bro I am making one application for doctors in that I got stuck at one point. In my app I have add config of selected multiple diseases and after that by clicking on anyone disease it will redirect to you the another fragment.so this is only for 1 disease I have approx 20 types of disease so for that building 20 fragment is not good. so can you guide me how I have to do that? I am looking forward from helping by you Thank you .
Do I Really need to send the module app?
Thanks👌👌
Isnt working for me, i import and when i try to use the code it doesent appear
Is it possible to make it private so that It can be assessed by the people who are authorized
Thanks you
Thanks sir
thanks you for the video!!! i keep getting error "no build artificats found" . Do you have any idea why that might be?
in the jitpack build log for your github release there should be another error somewhere above it which is the underlying problem, for me it was sdk.dir is incorrect so I had to use jitpack web ui to specify a linux based directory to my android sdk as jitpack uses linux environment and i use windows. you dont need a jitpack.yml file if you use the web ui called jitpack ci as you can specify all the required directories and parameters there
How make DataPicker in Jetpack Compose?
Useful!
versionCode and versionName not working in my latest project
Great video! Can I build library without app module? I think it can be easily to maintain later. When use in other projects.
how to add Custom domain name jitpack
Tank you
Useful👏
Why my library is not found in gradle
Question: How do you remember so many things? Tips please!
who says I remember this
I want to learn how can i master in coding??
Good video
Thanks, man. Your videos are great.
Again, I love you
Very usefull..
nice stuff
Froze at 13m in for about 10s
Best
jitpack is now deprecated
✌
lit
thanks bro
I see gymshark athelete.
Tell us how to create value and generate $$$ with Android
Very less informational video, there is no clear information about yml file and those lines you pasted on build.gradle file. Make a video on those in details. What the meaning of those lines you have written and the use case of yml file.
🇬🇧🇽🇰🌟🌟