[Total Duration: 51 min 47 sec]
পঞ্চম ক্লাসটা নেওয়া হয়েছিল ২৪ মে, ২০১৬ তারিখে। ক্লাসে Volley API ব্যবহার করে কিভাবে নেটওয়ার্ক কল করতে হয় সেটা শেখানোর পর নিজস্ব একটা ওয়েব সার্ভার তৈরি করা হয়েছিল। নিচে মোট পাঁচটা ভিডিওতে বিষয়গুলো ব্যাখ্যা করা হলো।
Note: ----------------------------------------------------------------------------------------
Volley Issue 1:
After git download of Volley, in file bintray.gradle, change the following line
publish = project.has("release")
to
publish = project.hasProperty("release")
Source: https://stackoverflow.com/questions/41237629/gradle-dsl-method-not-found-has
Volley Issue 2:
After importing volley in project:
From your (app) build.gradle file, copy:
buildTypes{ debug{ ... } release{ ... } }
in to build.gradle files of All libraries/modules included in project (volley in this case).
buildTypes{ debug{ ... } release{ ... } }
Now clean and rebuild the project, the issue will be fixed.
Still issue not fixed, update the gradle-wrapper.properties to
distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-all.zip
[9 min 27 sec]
[7 min 35 sec]
[10 min 12 sec]
[14 min 59 sec]
[9 min 33 sec]
ক্লাসে আলোচনা করা কন্টেন্টগুলো এখানে অ্যাটাচমেন্ট হিসেবে দেয়া হলো।