Talentica/AndroidWithKotlin

View on GitHub

Showing 83 of 83 total issues

Similar blocks of code found in 2 locations. Consider refactoring.
Open

private fun configPreviewRatioAndSize(params: Camera.Parameters, ratio: Ratio) {
val selected = ratio.extractFourByThreeSize(camera.parameters?.supportedPreviewSizes!!)
params.setPreviewSize(selected.width, selected.height)
}
customcamera/src/main/java/com/talentica/androidkotlin/customcamera/model/camera/CameraAdapter.kt on lines 177..180

Method createDb has 31 lines of code (exceeds 25 allowed). Consider refactoring.
Open

/**
* Creates or returns a previously-created database.
*
*
* Although this uses an AsyncTask which currently uses a serial executor, it's thread-safe.
Severity: Minor
Found in app/src/main/java/com/talentica/androidkotlin/db/DatabaseCreator.kt - About 1 hr to fix

    Method loadWithRetrofit has 30 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    private fun loadWithRetrofit(username: String) {
    val retrofit = Retrofit.Builder().baseUrl("https://api.github.com/")
    .addConverterFactory(GsonConverterFactory.create()).build()
     
    val retrofitService = retrofit.create(RetrofitService::class.java)

      Similar blocks of code found in 2 locations. Consider refactoring.
      Open

      package com.talentica.androidkotlin.networking
       
      import androidx.test.platform.app.InstrumentationRegistry
      import androidx.test.runner.AndroidJUnit4
      import org.junit.Assert.assertEquals
      sensors/src/androidTest/java/com/talentica/androidkotlin/sensors/ExampleInstrumentedTest.kt on lines 1..23

      Similar blocks of code found in 2 locations. Consider refactoring.
      Open

      package com.talentica.androidkotlin.sensors
       
      import androidx.test.platform.app.InstrumentationRegistry
      import androidx.test.runner.AndroidJUnit4
      import org.junit.Assert.assertEquals
      networking/src/androidTest/java/com/talentica/androidkotlin/networking/ExampleInstrumentedTest.kt on lines 1..23

      Method generateData has 28 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

      private fun generateData(
      products: MutableList<ProductEntity>,
      comments: MutableList<CommentEntity>
      ) {
      val rnd = Random()

        Method getTestData has 28 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

        public static String getTestData(Context context) {
         
        StringBuilder returnString = new StringBuilder();
        InputStream fIn = null;
        InputStreamReader isr = null;

          Similar blocks of code found in 2 locations. Consider refactoring.
          Open

          if (ContextCompat.checkSelfPermission(activity, Manifest.permission.WRITE_EXTERNAL_STORAGE) != PackageManager.PERMISSION_GRANTED) {
          //File write logic here
          if (ActivityCompat.shouldShowRequestPermissionRationale(activity, Manifest.permission.WRITE_EXTERNAL_STORAGE)) {
          // Show an explanation to the user *asynchronously* -- don't block
          // this thread waiting for the user's response! After the user
          customcamera/src/main/java/com/talentica/androidkotlin/customcamera/presenter/camera/CameraActivityPresenterImpl.kt on lines 41..56

          Similar blocks of code found in 2 locations. Consider refactoring.
          Open

          private fun requestCameraPermission() {
          // Here, thisActivity is the current activity
          // Should we show an explanation?
          if (ActivityCompat.shouldShowRequestPermissionRationale(activity, Manifest.permission.CAMERA)) {
          // Show an explanation to the user *asynchronously* -- don't block
          customcamera/src/main/java/com/talentica/androidkotlin/customcamera/presenter/landing/LandingActivityPresenterImpl.kt on lines 58..72

          Similar blocks of code found in 2 locations. Consider refactoring.
          Open

          private fun createOk(key: String? = null, value: String? = null) : com.google.gson.JsonObject {
          return create("ok", key, value)
          }
          sqlitedatabase/src/main/java/com/talentica/androidkotlin/sqlitedatabase/server/MockUserService.kt on lines 14..16

          Similar blocks of code found in 2 locations. Consider refactoring.
          Open

          private fun createError(key: String? = null, value: String? = null) : com.google.gson.JsonObject {
          return create("error", key, value)
          }
          sqlitedatabase/src/main/java/com/talentica/androidkotlin/sqlitedatabase/server/MockUserService.kt on lines 10..12

          Method loadWithOkHttp has 27 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

          private fun loadWithOkHttp(username: String) {
          OkHttpService.httpGet(username, object : okhttp3.Callback {
          override fun onFailure(call: okhttp3.Call, e: IOException) {
           
          if (!isAlive) {

            Method onSensorChanged has 26 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

            override fun onSensorChanged(event: SensorEvent) {
            val alpha = 0.97f
             
            synchronized(this) {
            if (event.sensor.type == Sensor.TYPE_ACCELEROMETER) {

              Method onResult has 26 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

              //If using emulator then send the location from Emulator's Extended Controls. :)
              override fun onResult(locationSettingsResult: LocationSettingsResult) {
              val status: Status = locationSettingsResult.getStatus();
              when (status.getStatusCode()) {
              LocationSettingsStatusCodes.SUCCESS -> {

                Similar blocks of code found in 2 locations. Consider refactoring.
                Open

                override fun showLoading() {
                val handler = Handler(Looper.getMainLooper())
                handler.post({
                progressBar.visibility = View.VISIBLE
                repoList.alpha = 0.4f
                networking/src/main/java/com/talentica/androidkotlin/networking/repoui/UserRepositories.kt on lines 66..72

                Similar blocks of code found in 2 locations. Consider refactoring.
                Open

                override fun hideLoading() {
                val handler = Handler(Looper.getMainLooper())
                handler.post({
                progressBar.visibility = View.GONE
                repoList.alpha = 1.0f
                networking/src/main/java/com/talentica/androidkotlin/networking/repoui/UserRepositories.kt on lines 58..64

                Similar blocks of code found in 2 locations. Consider refactoring.
                Open

                fun d(tag: String, vararg messages: Any) {
                // Only log DEBUG if build type is DEBUG
                if (BuildConfig.DEBUG) {
                log(tag, Log.DEBUG, null, *messages)
                }
                audioplayer/src/main/java/com/talentica/androidkotlin/audioplayer/utils/LogHelper.kt on lines 29..34

                Identical blocks of code found in 2 locations. Consider refactoring.
                Open

                override fun onFailure(call: okhttp3.Call, e: IOException) {
                 
                if (!isAlive) {
                return
                }
                networking/src/main/java/com/talentica/androidkotlin/networking/repoui/RepoPresenter.kt on lines 66..75

                Similar blocks of code found in 2 locations. Consider refactoring.
                Open

                fun v(tag: String, vararg messages: Any) {
                // Only log VERBOSE if build type is DEBUG
                if (BuildConfig.DEBUG) {
                log(tag, Log.VERBOSE, null, *messages)
                }
                audioplayer/src/main/java/com/talentica/androidkotlin/audioplayer/utils/LogHelper.kt on lines 36..41

                Identical blocks of code found in 2 locations. Consider refactoring.
                Open

                override fun onFailure(call: Call<Array<Repository>>?, t: Throwable?) {
                 
                if (!isAlive) {
                return
                }
                networking/src/main/java/com/talentica/androidkotlin/networking/repoui/RepoPresenter.kt on lines 114..123
                Severity
                Category
                Status
                Source
                Language