File tree Expand file tree Collapse file tree
src/main/java/com/androidplot/demos Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1919 theTargetSdkVersion = 30
2020 theMinSdkVersion = 5
2121 theVersionName = ' 1.5.10'
22- theVersionCode = 1
22+ theVersionCode = 226
2323 gitUrl = ' https://github.com/halfhp/androidplot.git'
2424}
2525
Original file line number Diff line number Diff line change @@ -36,7 +36,6 @@ dependencies {
3636 implementation " androidx.core:core-ktx:1.6.0"
3737 implementation " org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version "
3838 implementation project(' :androidplot-core' )
39- implementation ' com.crittercism:crittercism-android-agent:5.4.0'
4039 implementation ' androidx.recyclerview:recyclerview:1.2.1'
4140
4241 debugImplementation ' com.squareup.leakcanary:leakcanary-android:1.6.3'
Original file line number Diff line number Diff line change @@ -17,7 +17,6 @@ package com.androidplot.demos
1717
1818import android.app.Activity
1919import android.os.Bundle
20- import com.crittercism.app.Crittercism
2120import android.content.Intent
2221import android.util.Log
2322import com.androidplot.demos.databinding.MainBinding
@@ -28,18 +27,11 @@ class MainActivity : Activity() {
2827
2928 companion object {
3029 private val TAG = MainActivity ::class .java.name
31-
32- // DO *NOT* CHANGE THIS LINE! (CI-MATCH-POPULATE)
33- private val CRITTERCISM_APP_ID : String? = null
3430 }
3531
3632 public override fun onCreate (savedInstanceState : Bundle ? ) {
3733 super .onCreate(savedInstanceState)
3834 binding = MainBinding .inflate(layoutInflater)
39- if (CRITTERCISM_APP_ID != null ) {
40- Log .d(TAG , " Crittercism initialized." )
41- Crittercism .initialize(applicationContext, CRITTERCISM_APP_ID )
42- }
4335
4436 binding.animatedXYPlotExButton.setOnClickListener {
4537 startActivity(Intent (this , AnimatedXYPlotActivity ::class .java))
You can’t perform that action at this time.
0 commit comments