Shahzad Akhtar

Results 11 comments of Shahzad Akhtar

in your build.gradle(Project:myProject) `allprojects { repositories { maven { url 'https://jitpack.io' } } }` then in build.gradle(Module:app) `implementation 'com.github.prolificinteractive:material-calendarview:2.0.1'` Hope it'll help

> I have the same problem too > I check it from jitpack and found error log there (check this [link)](https://jitpack.io/#iammert/MaterialIntroView) > > I don't know whats happened, but you...

> Hi Lucas, I am owner of this Repo GooeyMenu lib now move to https://github.com/anshulagarwal06/GooeyMenu and maintained there. For use Gooey menu as android library read Readme file there( https://github.com/anshulagarwal06/GooeyMenu/blob/master/README.md...

Use `implementation 'com.github.lzyzsd:circleprogress:1.2.1'`

Hope this code might help: ` fun connectToWifi(ssid: String?, password: String?) { val specifier = WifiNetworkSpecifier.Builder() .setSsid(ssid!!) .setWpa2Passphrase(password!!) .build() val request = NetworkRequest.Builder() .addTransportType(NetworkCapabilities.TRANSPORT_WIFI) .setNetworkSpecifier(specifier) .build() val connectivityManager = getSystemService(CONNECTIVITY_SERVICE)...

> `new Handler().postDelayed(new Runnable() { @Override public void run() { card.setExpanded(true); } }, 10);` > > The delay works because when the system is inflating the layout, the card is...

I'm having same problem

I think the issue is here, `externalStorageFilesModelArrayList = new ArrayList(); externalStorageListAdapter = new ExternalStorageListAdapter(externalStorageFilesModelArrayList);` you guys are sending empty list to Adapter, that's why it is not showing anything.

> .gradle\caches\transforms-2\files-2.1\992a54bdb39f76cf75af688f14840fac\jetified-CircularTimerView-1.0\res\values\values.xml:4:5-24:25: AAPT: error: resource attr/isClockwise not Found Facing same issue