Skip to content
Snippets Groups Projects
Commit b67d5d68 authored by 박신혁's avatar 박신혁
Browse files

Merge branch 'master' of git.ajou.ac.kr:open-source-2018-spring/Awsome_Android_Global_Calender

parents 630eb269 78e2ec5e
Branches
No related tags found
No related merge requests found
Showing
with 31450 additions and 18 deletions
...@@ -17,9 +17,16 @@ ...@@ -17,9 +17,16 @@
## tools ## tools
* googleAPI * googleAPI
* kotlin * kotlin
* android studio 3.1 * android studio 3.1
=======
### License
>>>>>>> 78e2ec5e7d77fb0bcc38a6277c65aef76adda53d
## 기존 유사 프로젝트 ## 기존 유사 프로젝트
* 기존 안드로이드 달력 * 기존 안드로이드 달력
...@@ -61,6 +68,7 @@ ...@@ -61,6 +68,7 @@
* python - ics parser * python - ics parser
* https://github.com/oblique63/Python-GoogleCalendarParser (기존 파이썬 ics parser) * https://github.com/oblique63/Python-GoogleCalendarParser (기존 파이썬 ics parser)
* 기존 파이썬 ics parser를 참고하여 kotlin ics parser 제작 * 기존 파이썬 ics parser를 참고하여 kotlin ics parser 제작
* http://git.ajou.ac.kr/open-source-2018-spring/Android_ics_parser_kotlin (kotlin으로 ics parser 새로 작성) * http://git.ajou.ac.kr/open-source-2018-spring/Android_ics_parser_kotlin (kotlin으로 ics parser 새로 작성)
* kotlin 안드로이드 개발자들에게 도움이 될 것으로 예상됨(날짜 등을 활용한 프로젝트에서) * kotlin 안드로이드 개발자들에게 도움이 될 것으로 예상됨(날짜 등을 활용한 프로젝트에서)
...@@ -73,6 +81,22 @@ ...@@ -73,6 +81,22 @@
* Simple-calendar(Apache 2.0) * Simple-calendar(Apache 2.0)
* wisedog/Whoochoo(Apache 2.0) * wisedog/Whoochoo(Apache 2.0)
* 기존 파이썬 ics parser를 참고하여 kotlin ics parser 제작
* http://git.ajou.ac.kr/open-source-2018-spring/Android_ics_parser_kotlin (kotlin으로 ics parser 새로 작성)
* kotlin 안드로이드 개발자들에게 도움이 될 것으로 예상됨(날짜 등을 활용한 프로젝트에서)
* kotlin google_GPS_api 사용법 정리 및 샘플 코드 작성(안드로이드 스튜디오 3.1버전에서)
* http://git.ajou.ac.kr/open-source-2018-spring/Google_GPS_API_Kotlin
* GPS를 이용해야 하는 개발자들에게 도움이 될 것으로 예상됨
## 사용한 오픈소스 & License
* Simple-calendar(Apache 2.0)
* wisedog/Whoochoo(Apache 2.0)
## License ## License
* Apache 2.0 License * Apache 2.0 License
...@@ -92,3 +116,5 @@ ...@@ -92,3 +116,5 @@
> <p> 5.GPS 국가 자동 변경 기능 완료.</p> > <p> 5.GPS 국가 자동 변경 기능 완료.</p>
> <p> 6.가계부 기능 구현 완료.</p> > <p> 6.가계부 기능 구현 완료.</p>
...@@ -50,7 +50,6 @@ dependencies { ...@@ -50,7 +50,6 @@ dependencies {
implementation 'joda-time:joda-time:2.9.9' implementation 'joda-time:joda-time:2.9.9'
implementation 'com.facebook.stetho:stetho:1.5.0' implementation 'com.facebook.stetho:stetho:1.5.0'
implementation 'com.android.support:multidex:1.0.3' implementation 'com.android.support:multidex:1.0.3'
implementation 'com.facebook.android:facebook-login:[4,5)'
implementation fileTree(dir: 'libs', include: ['*.jar']) implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version" implementation "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version"
implementation 'com.android.support.constraint:constraint-layout:1.0.2' implementation 'com.android.support.constraint:constraint-layout:1.0.2'
......
package com.simplemobiletools.calendar.activities
import android.content.Intent
import android.support.v7.app.AppCompatActivity
import android.os.Bundle
import com.simplemobiletools.calendar.R
import kotlinx.android.synthetic.main.activity_count.*
private var allNum : Int =0
class CountActivity : AppCompatActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_count)
var sumNum : String
btn_result.setOnClickListener {
val num01: Int = Integer.parseInt(edt_01.text.toString())
val num02 = Integer.parseInt(edt_02.text.toString())
sumNum = end(num01 ,num02).toString()
txt_present.text = allNum.toString()
allNum += sumNum.toInt()
txt_result.text = allNum.toString()
}
}
fun end(a: Int, b: Int):Int{
return (a+b)
}
}
...@@ -22,6 +22,7 @@ import com.simplemobiletools.commons.extensions.* ...@@ -22,6 +22,7 @@ import com.simplemobiletools.commons.extensions.*
import com.simplemobiletools.commons.helpers.* import com.simplemobiletools.commons.helpers.*
import com.simplemobiletools.commons.models.RadioItem import com.simplemobiletools.commons.models.RadioItem
import kotlinx.android.synthetic.main.activity_event.* import kotlinx.android.synthetic.main.activity_event.*
//import kotlinx.android.synthetic.main.activity_account.*
import org.joda.time.DateTime import org.joda.time.DateTime
import java.util.* import java.util.*
import java.util.regex.Pattern import java.util.regex.Pattern
...@@ -44,10 +45,11 @@ class EventActivity : SimpleActivity() { ...@@ -44,10 +45,11 @@ class EventActivity : SimpleActivity() {
lateinit var mEventEndDateTime: DateTime lateinit var mEventEndDateTime: DateTime
lateinit var mEvent: Event lateinit var mEvent: Event
override fun onCreate(savedInstanceState: Bundle?) { override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState) super.onCreate(savedInstanceState)
setContentView(R.layout.activity_event) setContentView(R.layout.activity_event)
//setContentView(R.layout.activity_account)
supportActionBar?.setHomeAsUpIndicator(R.drawable.ic_cross) supportActionBar?.setHomeAsUpIndicator(R.drawable.ic_cross)
val intent = intent ?: return val intent = intent ?: return
mDialogTheme = getDialogTheme() mDialogTheme = getDialogTheme()
...@@ -80,7 +82,9 @@ class EventActivity : SimpleActivity() { ...@@ -80,7 +82,9 @@ class EventActivity : SimpleActivity() {
mReminder1Minutes = config.defaultReminderMinutes mReminder1Minutes = config.defaultReminderMinutes
mReminder2Minutes = config.defaultReminderMinutes3 mReminder2Minutes = config.defaultReminderMinutes3
mReminder3Minutes = config.defaultReminderMinutes2 mReminder3Minutes = config.defaultReminderMinutes2
setupNewEvent() setupNewEvent()
//setupNewEvent2()
} }
checkReminderTexts() checkReminderTexts()
...@@ -171,11 +175,12 @@ class EventActivity : SimpleActivity() { ...@@ -171,11 +175,12 @@ class EventActivity : SimpleActivity() {
val endTS = (intent.getLongExtra("endTime", System.currentTimeMillis()) / 1000).toInt() val endTS = (intent.getLongExtra("endTime", System.currentTimeMillis()) / 1000).toInt()
mEventEndDateTime = Formatter.getDateTimeFromTS(endTS) mEventEndDateTime = Formatter.getDateTimeFromTS(endTS)
var a =1000
event_title.setText(intent.getStringExtra("title")) event_title.setText(intent.getStringExtra("title"))
event_location.setText(intent.getStringExtra("eventLocation")) event_location.setText(intent.getStringExtra("eventLocation"))
event_description.setText(intent.getStringExtra("description")) event_description.setText(intent.getStringExtra("description"))
event_description.movementMethod = LinkMovementMethod.getInstance() event_description.movementMethod = LinkMovementMethod.getInstance()
} else { } else {
val startTS = intent.getIntExtra(NEW_EVENT_START_TS, 0) val startTS = intent.getIntExtra(NEW_EVENT_START_TS, 0)
val dateTime = Formatter.getDateTimeFromTS(startTS) val dateTime = Formatter.getDateTimeFromTS(startTS)
...@@ -186,6 +191,33 @@ class EventActivity : SimpleActivity() { ...@@ -186,6 +191,33 @@ class EventActivity : SimpleActivity() {
} }
} }
// private fun setupNewEvent2() {
// window.setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_VISIBLE)
// supportActionBar?.title = resources.getString(R.string.account)
// val isLastCaldavCalendarOK = config.caldavSync && config.getSyncedCalendarIdsAsList().contains(config.lastUsedCaldavCalendarId.toString())
// mEventCalendarId = if (isLastCaldavCalendarOK) config.lastUsedCaldavCalendarId else STORED_LOCALLY_ONLY
//
// if (intent.action == Intent.ACTION_EDIT || intent.action == Intent.ACTION_INSERT) {
// val startTS = (intent.getLongExtra("beginTime", System.currentTimeMillis()) / 1000).toInt()
// mEventStartDateTime = Formatter.getDateTimeFromTS(startTS)
//
// val endTS = (intent.getLongExtra("endTime", System.currentTimeMillis()) / 1000).toInt()
// mEventEndDateTime = Formatter.getDateTimeFromTS(endTS)
//
// event_title.setText(intent.getStringExtra("title"))
// event_location.setText(intent.getStringExtra("eventLocation"))
// event_description.setText(intent.getStringExtra("description"))
// event_description.movementMethod = LinkMovementMethod.getInstance()
// } else {
// val startTS = intent.getIntExtra(NEW_EVENT_START_TS, 0)
// val dateTime = Formatter.getDateTimeFromTS(startTS)
// mEventStartDateTime = dateTime
//
// val addHours = if (intent.getBooleanExtra(NEW_EVENT_SET_HOUR_DURATION, false)) 1 else 0
// mEventEndDateTime = mEventStartDateTime.plusHours(addHours)
// }
// }
private fun showReminder1Dialog() { private fun showReminder1Dialog() {
showPickSecondsDialogHelper(mReminder1Minutes) { showPickSecondsDialogHelper(mReminder1Minutes) {
mReminder1Minutes = if (it <= 0) it else it / 60 mReminder1Minutes = if (it <= 0) it else it / 60
......
...@@ -64,6 +64,7 @@ import com.google.android.gms.location.LocationServices ...@@ -64,6 +64,7 @@ import com.google.android.gms.location.LocationServices
import kotlinx.android.synthetic.main.activity_main.* import kotlinx.android.synthetic.main.activity_main.*
import android.location.Address import android.location.Address
import android.util.Log import android.util.Log
import android.widget.Button
import java.io.IOException import java.io.IOException
class MainActivity : SimpleActivity(), RefreshRecyclerViewListener , com.google.android.gms.location.LocationListener{ class MainActivity : SimpleActivity(), RefreshRecyclerViewListener , com.google.android.gms.location.LocationListener{
...@@ -96,7 +97,7 @@ class MainActivity : SimpleActivity(), RefreshRecyclerViewListener , com.google. ...@@ -96,7 +97,7 @@ class MainActivity : SimpleActivity(), RefreshRecyclerViewListener , com.google.
private var mStoredIsSundayFirst = false private var mStoredIsSundayFirst = false
private var mStoredUse24HourFormat = false private var mStoredUse24HourFormat = false
private var mStoredDimPastEvents = true private var mStoredDimPastEvents = true
private var allNum =0
override fun onLocationChanged(location: Location?) { override fun onLocationChanged(location: Location?) {
// You can now create a LatLng Object for use with maps // You can now create a LatLng Object for use with maps
// val latLng = LatLng(location.latitude, location.longitude) // val latLng = LatLng(location.latitude, location.longitude)
...@@ -130,6 +131,7 @@ class MainActivity : SimpleActivity(), RefreshRecyclerViewListener , com.google. ...@@ -130,6 +131,7 @@ class MainActivity : SimpleActivity(), RefreshRecyclerViewListener , com.google.
} }
override fun onCreate(savedInstanceState: Bundle?) { override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState) super.onCreate(savedInstanceState)
buildGoogleApiClient() buildGoogleApiClient()
...@@ -142,9 +144,20 @@ class MainActivity : SimpleActivity(), RefreshRecyclerViewListener , com.google. ...@@ -142,9 +144,20 @@ class MainActivity : SimpleActivity(), RefreshRecyclerViewListener , com.google.
checkWhatsNewDialog() checkWhatsNewDialog()
calendar_fab.beVisibleIf(config.storedView != YEARLY_VIEW) calendar_fab.beVisibleIf(config.storedView != YEARLY_VIEW)
calendar_fab.setOnClickListener { calendar_fab.setOnClickListener {
launchNewEventIntent(currentFragments.last().getNewEventDayCode()) launchNewEventIntent(currentFragments.last().getNewEventDayCode())
} }
calendar_count.setOnClickListener{
val intent = Intent(this, CountActivity::class.java)
startActivity(intent)
}
storeStateVariables() storeStateVariables()
if (resources.getBoolean(R.bool.portrait_only)) { if (resources.getBoolean(R.bool.portrait_only)) {
requestedOrientation = ActivityInfo.SCREEN_ORIENTATION_PORTRAIT requestedOrientation = ActivityInfo.SCREEN_ORIENTATION_PORTRAIT
......
package com.simplemobiletools.calendar.models package com.simplemobiletools.calendar.models
import android.accounts.Account
import com.simplemobiletools.calendar.extensions.seconds import com.simplemobiletools.calendar.extensions.seconds
import com.simplemobiletools.calendar.helpers.* import com.simplemobiletools.calendar.helpers.*
import com.simplemobiletools.calendar.helpers.Formatter import com.simplemobiletools.calendar.helpers.Formatter
......
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".CountActivity">
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context="com.kotlin_test.Activity.FunctionActivity">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="50dp"
android:orientation="horizontal"
android:weightSum="4">
<TextView
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:text="첫 번째 :"
android:gravity="center"/>
<EditText
android:id="@+id/edt_01"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:inputType="number"/>
<TextView
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:text="두 번째 :"
android:gravity="center"/>
<EditText
android:id="@+id/edt_02"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:inputType="number"/>
</LinearLayout>
<Button
android:id="@+id/btn_result"
style="@style/Widget.AppCompat.Button"
android:layout_width="match_parent"
android:layout_height="50dp"
android:text="END" />
<TextView
android:id="@+id/textView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="이전 합계" />
<TextView
android:id="@+id/txt_present"
android:layout_width="match_parent"
android:layout_height="50dp"
android:gravity="center"
android:textSize="20sp" />
<TextView
android:id="@+id/textView2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="최신 합계" />
<TextView
android:id="@+id/txt_result"
android:layout_width="match_parent"
android:layout_height="50dp"
android:gravity="center"
android:textSize="20sp" />
</LinearLayout>
</android.support.constraint.ConstraintLayout>
<?xml version="1.0" encoding="utf-8"?>
<ScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/event_scrollview"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<RelativeLayout
android:id="@+id/event_holder"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<com.simplemobiletools.commons.views.MyEditText
android:id="@+id/event_title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="@dimen/activity_margin"
android:layout_marginRight="@dimen/activity_margin"
android:layout_marginTop="@dimen/activity_margin"
android:hint="@string/title"
android:inputType="textCapSentences"
android:maxLength="80"
android:maxLines="1"
android:minEms="20"
android:textCursorDrawable="@null"
android:textSize="@dimen/day_text_size"/>
<com.simplemobiletools.commons.views.MyEditText
android:id="@+id/event_location"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/event_title"
android:layout_marginLeft="@dimen/activity_margin"
android:layout_marginTop="@dimen/activity_margin"
android:layout_toLeftOf="@+id/event_show_on_map"
android:hint="@string/location"
android:inputType="textCapWords"
android:maxLength="80"
android:maxLines="1"
android:minEms="20"
android:textCursorDrawable="@null"
android:textSize="@dimen/day_text_size"/>
<ImageView
android:id="@+id/event_show_on_map"
style="@style/MyBorderlessBackgroundStyle"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_alignBottom="@+id/event_location"
android:layout_alignParentEnd="true"
android:layout_alignParentRight="true"
android:layout_alignTop="@+id/event_location"
android:layout_marginEnd="@dimen/activity_margin"
android:layout_marginRight="@dimen/activity_margin"
android:paddingLeft="@dimen/small_margin"
android:paddingRight="@dimen/small_margin"
android:src="@drawable/ic_place"/>
<com.simplemobiletools.commons.views.MyEditText
android:id="@+id/event_description"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/event_location"
android:layout_marginLeft="@dimen/activity_margin"
android:layout_marginRight="@dimen/activity_margin"
android:layout_marginTop="@dimen/activity_margin"
android:autoLink="all"
android:gravity="top"
android:hint="@string/description"
android:inputType="textCapSentences|textMultiLine"
android:linksClickable="true"
android:minEms="20"
android:textCursorDrawable="@null"
android:textSize="@dimen/day_text_size"/>
<ImageView
android:id="@+id/event_description_divider"
android:layout_width="match_parent"
android:layout_height="1px"
android:layout_below="@+id/event_description"
android:layout_marginBottom="@dimen/normal_margin"
android:layout_marginTop="@dimen/activity_margin"
android:background="@color/divider_grey"
android:importantForAccessibility="no"/>
<ImageView
android:id="@+id/event_time_image"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_alignBottom="@+id/event_all_day"
android:layout_alignTop="@+id/event_all_day"
android:layout_below="@+id/event_description_divider"
android:layout_marginLeft="@dimen/normal_margin"
android:layout_marginStart="@dimen/normal_margin"
android:alpha="0.8"
android:padding="@dimen/medium_margin"
android:src="@drawable/ic_clock"/>
<com.simplemobiletools.commons.views.MySwitchCompat
android:id="@+id/event_all_day"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentEnd="true"
android:layout_alignParentRight="true"
android:layout_below="@+id/event_description_divider"
android:layout_marginEnd="@dimen/normal_margin"
android:layout_marginLeft="@dimen/small_margin"
android:layout_marginRight="@dimen/normal_margin"
android:layout_marginStart="@dimen/small_margin"
android:layout_toEndOf="@+id/event_time_image"
android:layout_toRightOf="@+id/event_time_image"
android:paddingBottom="@dimen/normal_margin"
android:paddingTop="@dimen/normal_margin"
android:text="@string/all_day"
android:textSize="@dimen/day_text_size"
app:switchPadding="@dimen/small_margin"/>
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/event_start_date"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/event_all_day"
android:layout_alignStart="@+id/event_all_day"
android:layout_below="@+id/event_time_image"
android:background="?attr/selectableItemBackground"
android:paddingBottom="@dimen/activity_margin"
android:paddingEnd="@dimen/activity_margin"
android:paddingRight="@dimen/activity_margin"
android:paddingTop="@dimen/activity_margin"
android:textSize="@dimen/day_text_size"
tools:text="January 1 1970"/>
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/event_start_time"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentEnd="true"
android:layout_alignParentRight="true"
android:layout_below="@+id/event_time_image"
android:background="?attr/selectableItemBackground"
android:padding="@dimen/activity_margin"
android:textSize="@dimen/day_text_size"
tools:text="00:00"/>
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/event_end_date"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/event_all_day"
android:layout_alignStart="@+id/event_all_day"
android:layout_below="@+id/event_start_date"
android:background="?attr/selectableItemBackground"
android:paddingBottom="@dimen/activity_margin"
android:paddingEnd="@dimen/activity_margin"
android:paddingRight="@dimen/activity_margin"
android:paddingTop="@dimen/activity_margin"
android:textSize="@dimen/day_text_size"
tools:text="January 1 1970"/>
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/event_end_time"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentEnd="true"
android:layout_alignParentRight="true"
android:layout_below="@+id/event_start_time"
android:background="?attr/selectableItemBackground"
android:padding="@dimen/activity_margin"
android:textSize="@dimen/day_text_size"
tools:text="00:00"/>
<ImageView
android:id="@+id/event_date_time_divider"
android:layout_width="match_parent"
android:layout_height="1px"
android:layout_below="@+id/event_end_date"
android:layout_marginBottom="@dimen/medium_margin"
android:layout_marginTop="@dimen/medium_margin"
android:background="@color/divider_grey"
android:importantForAccessibility="no"/>
<ImageView
android:id="@+id/event_reminder_image"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_alignBottom="@+id/event_reminder_1"
android:layout_alignTop="@+id/event_reminder_1"
android:layout_below="@+id/event_date_time_divider"
android:layout_marginLeft="@dimen/normal_margin"
android:layout_marginStart="@dimen/normal_margin"
android:alpha="0.8"
android:padding="@dimen/medium_margin"
android:src="@drawable/ic_bell"/>
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/event_reminder_1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/event_date_time_divider"
android:layout_marginLeft="@dimen/small_margin"
android:layout_marginStart="@dimen/small_margin"
android:layout_toEndOf="@+id/event_reminder_image"
android:layout_toRightOf="@+id/event_reminder_image"
android:background="?attr/selectableItemBackground"
android:paddingBottom="@dimen/activity_margin"
android:paddingTop="@dimen/activity_margin"
android:textSize="@dimen/day_text_size"/>
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/event_reminder_2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/event_reminder_1"
android:layout_alignStart="@+id/event_reminder_1"
android:layout_below="@+id/event_reminder_1"
android:alpha="0.4"
android:background="?attr/selectableItemBackground"
android:paddingBottom="@dimen/activity_margin"
android:paddingTop="@dimen/activity_margin"
android:text="@string/add_another_reminder"
android:textSize="@dimen/day_text_size"
android:visibility="gone"/>
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/event_reminder_3"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/event_reminder_1"
android:layout_alignStart="@+id/event_reminder_1"
android:layout_below="@+id/event_reminder_2"
android:alpha="0.4"
android:background="?attr/selectableItemBackground"
android:paddingBottom="@dimen/activity_margin"
android:paddingTop="@dimen/activity_margin"
android:text="@string/add_another_reminder"
android:textSize="@dimen/day_text_size"
android:visibility="gone"/>
<ImageView
android:id="@+id/event_reminder_divider"
android:layout_width="match_parent"
android:layout_height="1px"
android:layout_below="@+id/event_reminder_3"
android:layout_marginBottom="@dimen/medium_margin"
android:layout_marginTop="@dimen/medium_margin"
android:background="@color/divider_grey"
android:importantForAccessibility="no"/>
<ImageView
android:id="@+id/event_repetition_image"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_alignBottom="@+id/event_repetition"
android:layout_alignTop="@+id/event_repetition"
android:layout_below="@+id/event_date_time_divider"
android:layout_marginLeft="@dimen/normal_margin"
android:layout_marginStart="@dimen/normal_margin"
android:alpha="0.8"
android:padding="@dimen/medium_margin"
android:src="@drawable/ic_repeat"/>
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/event_repetition"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/event_reminder_divider"
android:layout_marginLeft="@dimen/small_margin"
android:layout_marginStart="@dimen/small_margin"
android:layout_toEndOf="@+id/event_repetition_image"
android:layout_toRightOf="@+id/event_repetition_image"
android:background="?attr/selectableItemBackground"
android:paddingBottom="@dimen/normal_margin"
android:paddingTop="@dimen/normal_margin"
android:textSize="@dimen/day_text_size"/>
<RelativeLayout
android:id="@+id/event_repetition_rule_holder"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/event_repetition"
android:layout_alignStart="@+id/event_repetition"
android:layout_below="@+id/event_repetition"
android:background="?attr/selectableItemBackground"
android:visibility="gone">
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/event_repetition_rule_label"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:clickable="false"
android:paddingBottom="@dimen/activity_margin"
android:paddingTop="@dimen/activity_margin"
android:text="@string/repeat_on"
android:textSize="@dimen/day_text_size"/>
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/event_repetition_rule"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentEnd="true"
android:layout_alignParentRight="true"
android:layout_toEndOf="@+id/event_repetition_rule_label"
android:layout_toRightOf="@+id/event_repetition_rule_label"
android:clickable="false"
android:gravity="end"
android:padding="@dimen/activity_margin"
android:text="@string/every_day"
android:textSize="@dimen/day_text_size"/>
</RelativeLayout>
<RelativeLayout
android:id="@+id/event_repetition_limit_holder"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/event_repetition"
android:layout_alignStart="@+id/event_repetition"
android:layout_below="@+id/event_repetition_rule_holder"
android:background="?attr/selectableItemBackground"
android:visibility="gone">
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/event_repetition_limit_label"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_toLeftOf="@+id/event_repetition_limit"
android:layout_toStartOf="@+id/event_repetition_limit"
android:clickable="false"
android:paddingBottom="@dimen/activity_margin"
android:paddingTop="@dimen/activity_margin"
android:text="@string/repeat_till"
android:textSize="@dimen/day_text_size"/>
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/event_repetition_limit"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentEnd="true"
android:layout_alignParentRight="true"
android:clickable="false"
android:padding="@dimen/activity_margin"
android:text="@string/forever"
android:textSize="@dimen/day_text_size"/>
</RelativeLayout>
<ImageView
android:id="@+id/event_repetition_divider"
android:layout_width="match_parent"
android:layout_height="1px"
android:layout_below="@+id/event_repetition_limit_holder"
android:layout_marginTop="@dimen/medium_margin"
android:background="@color/divider_grey"
android:importantForAccessibility="no"/>
<ImageView
android:id="@+id/event_caldav_calendar_image"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_alignBottom="@+id/event_caldav_calendar_holder"
android:layout_alignTop="@+id/event_caldav_calendar_holder"
android:layout_below="@+id/event_repetition_divider"
android:layout_marginLeft="@dimen/normal_margin"
android:layout_marginStart="@dimen/normal_margin"
android:alpha="0.8"
android:padding="@dimen/medium_margin"
android:src="@drawable/ic_calendar"
android:visibility="gone"/>
<RelativeLayout
android:id="@+id/event_caldav_calendar_holder"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/event_repetition_divider"
android:layout_toEndOf="@+id/event_caldav_calendar_image"
android:layout_toRightOf="@+id/event_caldav_calendar_image"
android:background="?attr/selectableItemBackground"
android:visibility="gone">
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/event_caldav_calendar_name"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="@dimen/small_margin"
android:layout_marginStart="@dimen/small_margin"
android:ellipsize="end"
android:maxLines="1"
android:paddingBottom="@dimen/tiny_margin"
android:paddingTop="@dimen/medium_margin"
android:textSize="@dimen/day_text_size"
tools:text="My calendar"/>
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/event_caldav_calendar_email"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/event_caldav_calendar_name"
android:layout_marginLeft="@dimen/small_margin"
android:layout_marginStart="@dimen/small_margin"
android:ellipsize="end"
android:maxLines="1"
android:paddingBottom="@dimen/medium_margin"
android:textSize="@dimen/meta_text_size"
tools:text="hello@simplemobiletools.com"/>
</RelativeLayout>
<ImageView
android:id="@+id/event_caldav_calendar_divider"
android:layout_width="match_parent"
android:layout_height="1px"
android:layout_below="@+id/event_caldav_calendar_holder"
android:background="@color/divider_grey"
android:importantForAccessibility="no"
android:visibility="gone"/>
<ImageView
android:id="@+id/event_type_image"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_alignBottom="@+id/event_type_holder"
android:layout_alignTop="@+id/event_type_holder"
android:layout_below="@+id/event_caldav_calendar_divider"
android:layout_marginLeft="@dimen/normal_margin"
android:layout_marginStart="@dimen/normal_margin"
android:alpha="0.8"
android:padding="@dimen/medium_margin"
android:src="@drawable/ic_color"/>
<RelativeLayout
android:id="@+id/event_type_holder"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/event_caldav_calendar_divider"
android:layout_marginTop="@dimen/medium_margin"
android:layout_toEndOf="@+id/event_type_image"
android:layout_toRightOf="@+id/event_type_image"
android:background="?attr/selectableItemBackground">
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/event_type"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="@dimen/small_margin"
android:layout_marginRight="@dimen/medium_margin"
android:layout_marginStart="@dimen/small_margin"
android:layout_toLeftOf="@+id/event_type_color"
android:paddingBottom="@dimen/normal_margin"
android:paddingTop="@dimen/normal_margin"
android:textSize="@dimen/day_text_size"/>
<ImageView
android:id="@+id/event_type_color"
android:layout_width="@dimen/color_sample_size"
android:layout_height="@dimen/color_sample_size"
android:layout_alignParentEnd="true"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
android:layout_marginEnd="@dimen/activity_margin"
android:layout_marginRight="@dimen/activity_margin"
android:clickable="false"/>
</RelativeLayout>
<ImageView
android:id="@+id/event_type_divider"
android:layout_width="match_parent"
android:layout_height="1px"
android:layout_below="@+id/event_type_holder"
android:layout_marginTop="@dimen/medium_margin"
android:background="@color/divider_grey"
android:importantForAccessibility="no"/>
</RelativeLayout>
</ScrollView>
...@@ -21,6 +21,23 @@ ...@@ -21,6 +21,23 @@
app:backgroundTint="@color/color_primary" app:backgroundTint="@color/color_primary"
app:rippleColor="@color/pressed_item_foreground" /> app:rippleColor="@color/pressed_item_foreground" />
<com.simplemobiletools.commons.views.MyFloatingActionButton
android:id="@+id/calendar_count"
style="@style/Widget.AppCompat.Button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
android:layout_margin="@dimen/activity_margin"
android:contentDescription="@string/account"
android:src="@drawable/ic_plus"
app:backgroundTint="#0366fc"
app:rippleColor="@color/pressed_item_foreground" />
<RelativeLayout <RelativeLayout
android:id="@+id/search_holder" android:id="@+id/search_holder"
android:layout_width="match_parent" android:layout_width="match_parent"
......
...@@ -164,16 +164,6 @@ ...@@ -164,16 +164,6 @@
android:text="@string/event_reminders" android:text="@string/event_reminders"
android:textAllCaps="true" android:textAllCaps="true"
android:textSize="@dimen/smaller_text_size"/> android:textSize="@dimen/smaller_text_size"/>
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/login_facebook"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="@dimen/bigger_margin"
android:layout_marginStart="@dimen/bigger_margin"
android:layout_marginTop="@dimen/activity_margin"
android:text="@string/event_reminders"
android:textAllCaps="true"
android:textSize="@dimen/smaller_text_size"/>
<RelativeLayout <RelativeLayout
android:id="@+id/settings_gps_holder" android:id="@+id/settings_gps_holder"
......
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">
</LinearLayout>
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<resources> <resources>
<string name="facebook_app_id">253715235190653</string>
<string name="fb_login_protocol_scheme">fb253715235190653</string>
<string name="app_name">심플 캘린더</string> <string name="app_name">심플 캘린더</string>
<string name="app_launcher_name">캘린더</string> <string name="app_launcher_name">캘린더</string>
<string name="change_view">보기 변경</string> <string name="change_view">보기 변경</string>
...@@ -21,6 +19,7 @@ ...@@ -21,6 +19,7 @@
<string name="event">이벤트</string> <string name="event">이벤트</string>
<string name="edit_event">이벤트 수정</string> <string name="edit_event">이벤트 수정</string>
<string name="new_event">새 이벤트</string> <string name="new_event">새 이벤트</string>
<string name="account">가계부</string>>
<string name="create_new_event">Create a new event</string> <string name="create_new_event">Create a new event</string>
<string name="duplicate_event">Duplicate event</string> <string name="duplicate_event">Duplicate event</string>
<string name="title_empty">제목을 입력해주세요</string> <string name="title_empty">제목을 입력해주세요</string>
......
...@@ -10,7 +10,7 @@ buildscript { ...@@ -10,7 +10,7 @@ buildscript {
} }
dependencies { dependencies {
classpath 'com.android.tools.build:gradle:3.1.2' classpath 'com.android.tools.build:gradle:3.1.3'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
......
#
# There is insufficient memory for the Java Runtime Environment to continue.
# Native memory allocation (malloc) failed to allocate 1057136 bytes for Chunk::new
# Possible reasons:
# The system is out of physical RAM or swap space
# In 32 bit mode, the process size limit was hit
# Possible solutions:
# Reduce memory load on the system
# Increase physical memory or swap space
# Check if swap backing store is full
# Use 64 bit Java on a 64 bit OS
# Decrease Java heap size (-Xmx/-Xms)
# Decrease number of Java threads
# Decrease Java thread stack sizes (-Xss)
# Set larger code cache with -XX:ReservedCodeCacheSize=
# This output file may be truncated or incomplete.
#
# Out of Memory Error (allocation.cpp:390), pid=2984, tid=0x0000000000001e5c
#
# JRE version: OpenJDK Runtime Environment (8.0_152-b02) (build 1.8.0_152-release-1024-b02)
# Java VM: OpenJDK 64-Bit Server VM (25.152-b02 mixed mode windows-amd64 compressed oops)
# Failed to write core dump. Minidumps are not enabled by default on client versions of Windows
#
--------------- T H R E A D ---------------
Current thread (0x0000000015e7c800): JavaThread "C2 CompilerThread1" daemon [_thread_in_native, id=7772, stack(0x0000000017920000,0x0000000017a20000)]
Stack: [0x0000000017920000,0x0000000017a20000]
[error occurred during error reporting (printing stack bounds), id 0xc0000005]
Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
Current CompileTask:
C2: 126275 11978 4 org.objectweb.asm.Frame::a (2252 bytes)
--------------- P R O C E S S ---------------
Java Threads: ( => current thread )
0x000000001ad1e800 JavaThread "ForkJoinPool.commonPool-worker-0" daemon [_thread_in_native, id=672, stack(0x0000000026030000,0x0000000026130000)]
0x000000001ad15800 JavaThread "ForkJoinPool.commonPool-worker-3" daemon [_thread_in_native, id=13984, stack(0x0000000025f30000,0x0000000026030000)]
0x000000001ad15000 JavaThread "ForkJoinPool.commonPool-worker-2" daemon [_thread_in_native, id=8176, stack(0x0000000025e30000,0x0000000025f30000)]
0x000000001ad1c800 JavaThread "Cache worker for Java compile cache (C:\Users\hyunh\Desktop\Awsome_Android_Global_Calender\.gradle\4.4.1\javaCompile)" [_thread_blocked, id=13476, stack(0x0000000024e30000,0x0000000024f30000)]
0x000000001ad1b800 JavaThread "RMI TCP Connection(3)-127.0.0.1" daemon [_thread_in_native, id=7828, stack(0x0000000024d30000,0x0000000024e30000)]
0x000000001ad14000 JavaThread "RMI Reaper" [_thread_blocked, id=2244, stack(0x0000000024c30000,0x0000000024d30000)]
0x000000001ad18000 JavaThread "RMI TCP Accept-0" daemon [_thread_in_native, id=7856, stack(0x0000000024b30000,0x0000000024c30000)]
0x000000001ad16800 JavaThread "GC Daemon" daemon [_thread_blocked, id=13504, stack(0x0000000024a30000,0x0000000024b30000)]
0x000000001ad1b000 JavaThread "RMI Scheduler(0)" daemon [_thread_blocked, id=7372, stack(0x0000000024830000,0x0000000024930000)]
0x000000001c0bf800 JavaThread "Task worker for ':' Thread 3" [_thread_blocked, id=3060, stack(0x0000000022b30000,0x0000000022c30000)]
0x000000001c0bf000 JavaThread "Task worker for ':' Thread 2" [_thread_blocked, id=6360, stack(0x0000000022a30000,0x0000000022b30000)]
0x000000001c0c2000 JavaThread "Task worker for ':'" [_thread_blocked, id=11040, stack(0x0000000022930000,0x0000000022a30000)]
0x000000001c0c1000 JavaThread "Cache worker for Build Output Cleanup Cache (C:\Users\hyunh\Desktop\Awsome_Android_Global_Calender\.gradle\buildOutputCleanup)" [_thread_blocked, id=12916, stack(0x0000000022830000,0x0000000022930000)]
0x000000001c0bc000 JavaThread "Cache worker for task history cache (C:\Users\hyunh\Desktop\Awsome_Android_Global_Calender\.gradle\4.4.1\taskHistory)" [_thread_blocked, id=13424, stack(0x0000000022730000,0x0000000022830000)]
0x000000001c0bc800 JavaThread "Cache worker for file content cache (C:\Users\hyunh\Desktop\Awsome_Android_Global_Calender\.gradle\4.4.1\fileContent)" [_thread_blocked, id=10860, stack(0x00000000206e0000,0x00000000207e0000)]
0x000000001c0c2800 JavaThread "Memory manager" [_thread_blocked, id=2176, stack(0x000000001ffe0000,0x00000000200e0000)]
0x000000001bc71000 JavaThread "build operations Thread 4" [_thread_blocked, id=864, stack(0x000000001f8e0000,0x000000001f9e0000)]
0x000000001bc70800 JavaThread "build operations Thread 3" [_thread_blocked, id=3424, stack(0x000000001f7e0000,0x000000001f8e0000)]
0x000000001bc6f800 JavaThread "build operations Thread 2" [_thread_blocked, id=1164, stack(0x000000001f6e0000,0x000000001f7e0000)]
0x000000001bc76800 JavaThread "build operations" [_thread_blocked, id=2716, stack(0x000000001e1c0000,0x000000001e2c0000)]
0x000000001bc72000 JavaThread "Cache worker for Artifact transforms cache (C:\Users\hyunh\.gradle\caches\transforms-1)" [_thread_blocked, id=2996, stack(0x000000001dc80000,0x000000001dd80000)]
0x0000000019301000 JavaThread "Cache worker for file hash cache (C:\Users\hyunh\Desktop\Awsome_Android_Global_Calender\.gradle\4.4.1\fileHashes)" [_thread_blocked, id=13516, stack(0x000000001b5a0000,0x000000001b6a0000)]
0x0000000018ffe000 JavaThread "File lock request listener" [_thread_in_native, id=4884, stack(0x000000001a4d0000,0x000000001a5d0000)]
0x0000000018f48000 JavaThread "Cache worker for file hash cache (C:\Users\hyunh\.gradle\caches\4.4.1\fileHashes)" [_thread_blocked, id=5892, stack(0x000000001a3d0000,0x000000001a4d0000)]
0x0000000018d61000 JavaThread "Asynchronous log dispatcher for DefaultDaemonConnection: socket connection from /127.0.0.1:57055 to /127.0.0.1:57056" [_thread_blocked, id=14132, stack(0x0000000019fd0000,0x000000001a0d0000)]
0x0000000018d4c800 JavaThread "Daemon worker" [_thread_blocked, id=9748, stack(0x0000000019ed0000,0x0000000019fd0000)]
0x0000000018b47800 JavaThread "Cancel handler" [_thread_blocked, id=10760, stack(0x0000000019dd0000,0x0000000019ed0000)]
0x0000000018c37800 JavaThread "Handler for socket connection from /127.0.0.1:57055 to /127.0.0.1:57056" [_thread_in_native, id=10348, stack(0x0000000019ad0000,0x0000000019bd0000)]
0x0000000018c36800 JavaThread "Daemon" [_thread_blocked, id=10668, stack(0x00000000199d0000,0x0000000019ad0000)]
0x0000000018c24000 JavaThread "Daemon periodic checks" [_thread_blocked, id=7324, stack(0x00000000198d0000,0x00000000199d0000)]
0x0000000018c85800 JavaThread "Incoming local TCP Connector on port 57055" [_thread_in_native, id=12140, stack(0x00000000196f0000,0x00000000197f0000)]
0x00000000172b3000 JavaThread "Service Thread" daemon [_thread_blocked, id=5372, stack(0x0000000017b20000,0x0000000017c20000)]
0x0000000017236000 JavaThread "C1 CompilerThread2" daemon [_thread_blocked, id=10664, stack(0x0000000017a20000,0x0000000017b20000)]
=>0x0000000015e7c800 JavaThread "C2 CompilerThread1" daemon [_thread_in_native, id=7772, stack(0x0000000017920000,0x0000000017a20000)]
0x0000000015e34800 JavaThread "C2 CompilerThread0" daemon [_thread_in_native, id=13992, stack(0x0000000017820000,0x0000000017920000)]
0x0000000015e34000 JavaThread "Attach Listener" daemon [_thread_blocked, id=6656, stack(0x0000000017720000,0x0000000017820000)]
0x0000000017228800 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=752, stack(0x0000000017620000,0x0000000017720000)]
0x0000000015e08000 JavaThread "Finalizer" daemon [_thread_blocked, id=4560, stack(0x0000000017090000,0x0000000017190000)]
0x0000000003744000 JavaThread "Reference Handler" daemon [_thread_blocked, id=14088, stack(0x0000000016f90000,0x0000000017090000)]
0x00000000032be000 JavaThread "main" [_thread_blocked, id=8936, stack(0x0000000003190000,0x0000000003290000)]
Other Threads:
0x0000000015de5800 VMThread [stack: 0x0000000016e90000,0x0000000016f90000] [id=1012]
0x00000000172b3800 WatcherThread [stack: 0x0000000017c20000,0x0000000017d20000] [id=10732]
VM state:not at safepoint (normal execution)
VM Mutex/Monitor currently owned by a thread: None
Heap:
PSYoungGen total 325120K, used 51257K [0x00000000eab00000, 0x00000000ffd80000, 0x0000000100000000)
eden space 302080K, 14% used [0x00000000eab00000,0x00000000ed5e8c88,0x00000000fd200000)
from space 23040K, 31% used [0x00000000fd200000,0x00000000fd925a18,0x00000000fe880000)
to space 21504K, 0% used [0x00000000fe880000,0x00000000fe880000,0x00000000ffd80000)
ParOldGen total 82432K, used 58398K [0x00000000c0000000, 0x00000000c5080000, 0x00000000eab00000)
object space 82432K, 70% used [0x00000000c0000000,0x00000000c3907b00,0x00000000c5080000)
Metaspace used 73827K, capacity 76156K, committed 76416K, reserved 1116160K
class space used 9802K, capacity 10331K, committed 10368K, reserved 1048576K
Card table byte_map: [0x0000000012b10000,0x0000000012d20000] byte_map_base: 0x0000000012510000
Marking Bits: (ParMarkBitMap*) 0x0000000071e14970
Begin Bits: [0x0000000013280000, 0x0000000014280000)
End Bits: [0x0000000014280000, 0x0000000015280000)
Polling page: 0x0000000001480000
CodeCache: size=245760Kb used=32692Kb max_used=32692Kb free=213067Kb
bounds [0x0000000003750000, 0x0000000005770000, 0x0000000012750000]
total_blobs=10571 nmethods=9731 adapters=752
compilation: enabled
Compilation events (10 events):
Event: 126.196 Thread 0x0000000017236000 12002 2 org.objectweb.asm.MethodVisitor::visitIntInsn (17 bytes)
Event: 126.197 Thread 0x0000000017236000 nmethod 12002 0x0000000005764890 code [0x0000000005764a00, 0x0000000005764b88]
Event: 126.199 Thread 0x0000000017236000 12004 2 org.objectweb.asm.MethodWriter::visitMaxs (1161 bytes)
Event: 126.202 Thread 0x0000000017236000 nmethod 12004 0x0000000005764c10 code [0x0000000005764f00, 0x0000000005766098]
Event: 126.202 Thread 0x0000000017236000 12005 2 org.objectweb.asm.tree.analysis.BasicInterpreter::binaryOperation (14 bytes)
Event: 126.203 Thread 0x0000000017236000 nmethod 12005 0x00000000057677d0 code [0x0000000005767940, 0x0000000005767b08]
Event: 126.203 Thread 0x0000000017236000 12006 2 org.objectweb.asm.tree.analysis.BasicInterpreter::binaryOperation (600 bytes)
Event: 126.203 Thread 0x0000000017236000 nmethod 12006 0x0000000005767c10 code [0x0000000005767da0, 0x00000000057681e8]
Event: 126.207 Thread 0x0000000017236000 12007 2 com.android.build.gradle.internal.incremental.IncrementalSupportVisitor$$Lambda$420/287362693::apply (16 bytes)
Event: 126.207 Thread 0x0000000017236000 nmethod 12007 0x0000000005768310 code [0x0000000005768480, 0x0000000005768648]
GC Heap History (10 events):
Event: 105.714 GC heap before
{Heap before GC invocations=20 (full 3):
PSYoungGen total 212480K, used 197120K [0x00000000eab00000, 0x00000000fa600000, 0x0000000100000000)
eden space 197120K, 100% used [0x00000000eab00000,0x00000000f6b80000,0x00000000f6b80000)
from space 15360K, 0% used [0x00000000f7b00000,0x00000000f7b00000,0x00000000f8a00000)
to space 15872K, 0% used [0x00000000f6b80000,0x00000000f6b80000,0x00000000f7b00000)
ParOldGen total 82432K, used 34687K [0x00000000c0000000, 0x00000000c5080000, 0x00000000eab00000)
object space 82432K, 42% used [0x00000000c0000000,0x00000000c21dfc90,0x00000000c5080000)
Metaspace used 65272K, capacity 67276K, committed 67456K, reserved 1107968K
class space used 8818K, capacity 9287K, committed 9344K, reserved 1048576K
Event: 106.028 GC heap after
Heap after GC invocations=20 (full 3):
PSYoungGen total 212992K, used 14860K [0x00000000eab00000, 0x00000000fc100000, 0x0000000100000000)
eden space 197120K, 0% used [0x00000000eab00000,0x00000000eab00000,0x00000000f6b80000)
from space 15872K, 93% used [0x00000000f6b80000,0x00000000f7a033b8,0x00000000f7b00000)
to space 17920K, 0% used [0x00000000faf80000,0x00000000faf80000,0x00000000fc100000)
ParOldGen total 82432K, used 34695K [0x00000000c0000000, 0x00000000c5080000, 0x00000000eab00000)
object space 82432K, 42% used [0x00000000c0000000,0x00000000c21e1c90,0x00000000c5080000)
Metaspace used 65272K, capacity 67276K, committed 67456K, reserved 1107968K
class space used 8818K, capacity 9287K, committed 9344K, reserved 1048576K
}
Event: 117.015 GC heap before
{Heap before GC invocations=21 (full 3):
PSYoungGen total 212992K, used 210963K [0x00000000eab00000, 0x00000000fc100000, 0x0000000100000000)
eden space 197120K, 99% used [0x00000000eab00000,0x00000000f6a81a40,0x00000000f6b80000)
from space 15872K, 93% used [0x00000000f6b80000,0x00000000f7a033b8,0x00000000f7b00000)
to space 17920K, 0% used [0x00000000faf80000,0x00000000faf80000,0x00000000fc100000)
ParOldGen total 82432K, used 34695K [0x00000000c0000000, 0x00000000c5080000, 0x00000000eab00000)
object space 82432K, 42% used [0x00000000c0000000,0x00000000c21e1c90,0x00000000c5080000)
Metaspace used 71560K, capacity 73728K, committed 73856K, reserved 1114112K
class space used 9528K, capacity 10045K, committed 10112K, reserved 1048576K
Event: 117.127 GC heap after
Heap after GC invocations=21 (full 3):
PSYoungGen total 261120K, used 17896K [0x00000000eab00000, 0x00000000fc880000, 0x0000000100000000)
eden space 243200K, 0% used [0x00000000eab00000,0x00000000eab00000,0x00000000f9880000)
from space 17920K, 99% used [0x00000000faf80000,0x00000000fc0fa000,0x00000000fc100000)
to space 23552K, 0% used [0x00000000f9880000,0x00000000f9880000,0x00000000faf80000)
ParOldGen total 82432K, used 41392K [0x00000000c0000000, 0x00000000c5080000, 0x00000000eab00000)
object space 82432K, 50% used [0x00000000c0000000,0x00000000c286c3b8,0x00000000c5080000)
Metaspace used 71560K, capacity 73728K, committed 73856K, reserved 1114112K
class space used 9528K, capacity 10045K, committed 10112K, reserved 1048576K
}
Event: 117.882 GC heap before
{Heap before GC invocations=22 (full 3):
PSYoungGen total 261120K, used 260853K [0x00000000eab00000, 0x00000000fc880000, 0x0000000100000000)
eden space 243200K, 99% used [0x00000000eab00000,0x00000000f98437e0,0x00000000f9880000)
from space 17920K, 99% used [0x00000000faf80000,0x00000000fc0fa000,0x00000000fc100000)
to space 23552K, 0% used [0x00000000f9880000,0x00000000f9880000,0x00000000faf80000)
ParOldGen total 82432K, used 41392K [0x00000000c0000000, 0x00000000c5080000, 0x00000000eab00000)
object space 82432K, 50% used [0x00000000c0000000,0x00000000c286c3b8,0x00000000c5080000)
Metaspace used 71570K, capacity 73728K, committed 73856K, reserved 1114112K
class space used 9528K, capacity 10045K, committed 10112K, reserved 1048576K
Event: 118.039 GC heap after
Heap after GC invocations=22 (full 3):
PSYoungGen total 266752K, used 64K [0x00000000eab00000, 0x0000000100000000, 0x0000000100000000)
eden space 243200K, 0% used [0x00000000eab00000,0x00000000eab00000,0x00000000f9880000)
from space 23552K, 0% used [0x00000000f9880000,0x00000000f9890000,0x00000000faf80000)
to space 23552K, 0% used [0x00000000fe900000,0x00000000fe900000,0x0000000100000000)
ParOldGen total 82432K, used 58342K [0x00000000c0000000, 0x00000000c5080000, 0x00000000eab00000)
object space 82432K, 70% used [0x00000000c0000000,0x00000000c38f9b00,0x00000000c5080000)
Metaspace used 71570K, capacity 73728K, committed 73856K, reserved 1114112K
class space used 9528K, capacity 10045K, committed 10112K, reserved 1048576K
}
Event: 118.349 GC heap before
{Heap before GC invocations=23 (full 3):
PSYoungGen total 266752K, used 242409K [0x00000000eab00000, 0x0000000100000000, 0x0000000100000000)
eden space 243200K, 99% used [0x00000000eab00000,0x00000000f97aa4a0,0x00000000f9880000)
from space 23552K, 0% used [0x00000000f9880000,0x00000000f9890000,0x00000000faf80000)
to space 23552K, 0% used [0x00000000fe900000,0x00000000fe900000,0x0000000100000000)
ParOldGen total 82432K, used 58342K [0x00000000c0000000, 0x00000000c5080000, 0x00000000eab00000)
object space 82432K, 70% used [0x00000000c0000000,0x00000000c38f9b00,0x00000000c5080000)
Metaspace used 71577K, capacity 73728K, committed 73856K, reserved 1114112K
class space used 9528K, capacity 10045K, committed 10112K, reserved 1048576K
Event: 118.355 GC heap after
Heap after GC invocations=23 (full 3):
PSYoungGen total 324608K, used 96K [0x00000000eab00000, 0x00000000fff00000, 0x0000000100000000)
eden space 302080K, 0% used [0x00000000eab00000,0x00000000eab00000,0x00000000fd200000)
from space 22528K, 0% used [0x00000000fe900000,0x00000000fe918000,0x00000000fff00000)
to space 23040K, 0% used [0x00000000fd200000,0x00000000fd200000,0x00000000fe880000)
ParOldGen total 82432K, used 58366K [0x00000000c0000000, 0x00000000c5080000, 0x00000000eab00000)
object space 82432K, 70% used [0x00000000c0000000,0x00000000c38ffb00,0x00000000c5080000)
Metaspace used 71577K, capacity 73728K, committed 73856K, reserved 1114112K
class space used 9528K, capacity 10045K, committed 10112K, reserved 1048576K
}
Event: 125.070 GC heap before
{Heap before GC invocations=24 (full 3):
PSYoungGen total 324608K, used 302176K [0x00000000eab00000, 0x00000000fff00000, 0x0000000100000000)
eden space 302080K, 100% used [0x00000000eab00000,0x00000000fd200000,0x00000000fd200000)
from space 22528K, 0% used [0x00000000fe900000,0x00000000fe918000,0x00000000fff00000)
to space 23040K, 0% used [0x00000000fd200000,0x00000000fd200000,0x00000000fe880000)
ParOldGen total 82432K, used 58366K [0x00000000c0000000, 0x00000000c5080000, 0x00000000eab00000)
object space 82432K, 70% used [0x00000000c0000000,0x00000000c38ffb00,0x00000000c5080000)
Metaspace used 73682K, capacity 76092K, committed 76160K, reserved 1116160K
class space used 9782K, capacity 10331K, committed 10368K, reserved 1048576K
Event: 125.146 GC heap after
Heap after GC invocations=24 (full 3):
PSYoungGen total 325120K, used 7318K [0x00000000eab00000, 0x00000000ffd80000, 0x0000000100000000)
eden space 302080K, 0% used [0x00000000eab00000,0x00000000eab00000,0x00000000fd200000)
from space 23040K, 31% used [0x00000000fd200000,0x00000000fd925a18,0x00000000fe880000)
to space 21504K, 0% used [0x00000000fe880000,0x00000000fe880000,0x00000000ffd80000)
ParOldGen total 82432K, used 58398K [0x00000000c0000000, 0x00000000c5080000, 0x00000000eab00000)
object space 82432K, 70% used [0x00000000c0000000,0x00000000c3907b00,0x00000000c5080000)
Metaspace used 73682K, capacity 76092K, committed 76160K, reserved 1116160K
class space used 9782K, capacity 10331K, committed 10368K, reserved 1048576K
}
Deoptimization events (10 events):
Event: 124.300 Thread 0x000000001ad1e800 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00000000051760b0 method=org.objectweb.asm.Item.a(Lorg/objectweb/asm/Item;)Z @ 186
Event: 124.324 Thread 0x000000001ad15800 Uncommon trap: reason=unstable_if action=reinterpret pc=0x000000000521df04 method=org.objectweb.asm.Frame.b(I)V @ 26
Event: 124.330 Thread 0x000000001ad15000 Uncommon trap: reason=class_check action=maybe_recompile pc=0x0000000004440cfc method=java.net.URLClassLoader.defineClass(Ljava/lang/String;Lsun/misc/Resource;)Ljava/lang/Class; @ 34
Event: 124.352 Thread 0x000000001ad15000 Uncommon trap: reason=class_check action=maybe_recompile pc=0x0000000004440cfc method=java.net.URLClassLoader.defineClass(Ljava/lang/String;Lsun/misc/Resource;)Ljava/lang/Class; @ 34
Event: 124.366 Thread 0x000000001ad15000 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00000000044411fc method=java.net.URLClassLoader.getAndVerifyPackage(Ljava/lang/String;Ljava/util/jar/Manifest;Ljava/net/URL;)Ljava/lang/Package; @ 62
Event: 124.371 Thread 0x000000001ad15000 Uncommon trap: reason=unstable_if action=reinterpret pc=0x000000000449a190 method=java.net.URLClassLoader.getAndVerifyPackage(Ljava/lang/String;Ljava/util/jar/Manifest;Ljava/net/URL;)Ljava/lang/Package; @ 62
Event: 124.788 Thread 0x000000001ad15000 Uncommon trap: reason=range_check action=make_not_entrant pc=0x000000000521c8f0 method=org.objectweb.asm.Type.a([CI)Lorg/objectweb/asm/Type; @ 162
Event: 124.792 Thread 0x000000001ad15000 Uncommon trap: reason=unstable_if action=reinterpret pc=0x0000000005696bc0 method=org.objectweb.asm.Type.getArgumentsAndReturnSizes(Ljava/lang/String;)I @ 118
Event: 125.029 Thread 0x000000001ad15000 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00000000056dd9a8 method=org.objectweb.asm.Frame.a(I)I @ 13
Event: 126.197 Thread 0x000000001ad15800 Uncommon trap: reason=unstable_if action=reinterpret pc=0x0000000005742aa4 method=org.objectweb.asm.MethodWriter.visitMaxs(II)V @ 447
Classes redefined (0 events):
No events
Internal exceptions (10 events):
Event: 36.020 Thread 0x000000001ad15000 Exception <a 'java/lang/InterruptedException'> (0x00000000f41625d8) thrown at [D:\src\AOSP-openjdk-cygwin\jdk8u\hotspot\src\share\vm\runtime\objectMonitor.cpp, line 1684]
Event: 36.037 Thread 0x000000001c0bf800 Exception <a 'java/lang/NoSuchMethodError': <clinit>> (0x00000000f402eb18) thrown at [D:\src\AOSP-openjdk-cygwin\jdk8u\hotspot\src\share\vm\prims\jni.cpp, line 1613]
Event: 36.037 Thread 0x000000001c0bf800 Exception <a 'java/lang/NoSuchMethodError': <clinit>> (0x00000000f403aba0) thrown at [D:\src\AOSP-openjdk-cygwin\jdk8u\hotspot\src\share\vm\prims\jni.cpp, line 1613]
Event: 36.039 Thread 0x000000001c0bf800 Exception <a 'java/lang/NoSuchMethodError': <clinit>> (0x00000000f404aa28) thrown at [D:\src\AOSP-openjdk-cygwin\jdk8u\hotspot\src\share\vm\prims\jni.cpp, line 1613]
Event: 36.049 Thread 0x000000001c0bf800 Exception <a 'java/lang/NoSuchMethodError': <clinit>> (0x00000000f4072790) thrown at [D:\src\AOSP-openjdk-cygwin\jdk8u\hotspot\src\share\vm\prims\jni.cpp, line 1613]
Event: 36.074 Thread 0x000000001c0bf800 Exception <a 'java/lang/NoSuchMethodError': <clinit>> (0x00000000f4254f48) thrown at [D:\src\AOSP-openjdk-cygwin\jdk8u\hotspot\src\share\vm\prims\jni.cpp, line 1613]
Event: 36.082 Thread 0x000000001c0bf800 Exception <a 'java/lang/NoSuchMethodError': <clinit>> (0x00000000f42e8b68) thrown at [D:\src\AOSP-openjdk-cygwin\jdk8u\hotspot\src\share\vm\prims\jni.cpp, line 1613]
Event: 101.913 Thread 0x000000001ad1b800 Exception <a 'java/lang/NoSuchMethodError': <clinit>> (0x00000000f4a6fb70) thrown at [D:\src\AOSP-openjdk-cygwin\jdk8u\hotspot\src\share\vm\prims\jni.cpp, line 1613]
Event: 116.672 Thread 0x000000001c0bf000 Exception <a 'java/lang/NoSuchMethodError': java.lang.Object.lambda$or$2(Ljava/util/function/Predicate;Ljava/lang/Object;)Z> (0x00000000f4169420) thrown at [D:\src\AOSP-openjdk-cygwin\jdk8u\hotspot\src\share\vm\interpreter\linkResolver.cpp, line 584]
Event: 122.068 Thread 0x000000001c0bf800 Exception <a 'java/lang/NoSuchMethodError': <clinit>> (0x00000000f47de0c0) thrown at [D:\src\AOSP-openjdk-cygwin\jdk8u\hotspot\src\share\vm\prims\jni.cpp, line 1613]
Events (10 events):
Event: 126.120 Thread 0x000000001ad15800 DEOPT UNPACKING pc=0x00000000037975d0 sp=0x000000002602e838 mode 0
Event: 126.122 Thread 0x000000001ad15000 DEOPT PACKING pc=0x0000000004ff83a7 sp=0x0000000025f2e670
Event: 126.122 Thread 0x000000001ad15000 DEOPT UNPACKING pc=0x00000000037975d0 sp=0x0000000025f2e608 mode 0
Event: 126.135 Thread 0x000000001ad1e800 DEOPT PACKING pc=0x0000000004ff83a7 sp=0x000000002612e6d0
Event: 126.135 Thread 0x000000001ad1e800 DEOPT UNPACKING pc=0x00000000037975d0 sp=0x000000002612e668 mode 0
Event: 126.188 loading class android/content/ContentValues
Event: 126.188 loading class android/content/ContentValues done
Event: 126.197 Thread 0x000000001ad15800 Uncommon trap: trap_request=0xffffff65 fr.pc=0x0000000005742aa4
Event: 126.197 Thread 0x000000001ad15800 DEOPT PACKING pc=0x0000000005742aa4 sp=0x000000002602eac0
Event: 126.197 Thread 0x000000001ad15800 DEOPT UNPACKING pc=0x000000000379557b sp=0x000000002602eac0 mode 2
Dynamic libraries:
0x00007ff6aa350000 - 0x00007ff6aa381000 C:\Program Files\Android\Android Studio\jre\bin\java.exe
0x00007ffd274f0000 - 0x00007ffd276d1000 C:\WINDOWS\SYSTEM32\ntdll.dll
0x00007ffd27400000 - 0x00007ffd274b2000 C:\WINDOWS\System32\KERNEL32.DLL
0x00007ffd24310000 - 0x00007ffd24583000 C:\WINDOWS\System32\KERNELBASE.dll
0x00007ffd26b20000 - 0x00007ffd26bc1000 C:\WINDOWS\System32\ADVAPI32.dll
0x00007ffd263f0000 - 0x00007ffd2648e000 C:\WINDOWS\System32\msvcrt.dll
0x00007ffd27000000 - 0x00007ffd2705b000 C:\WINDOWS\System32\sechost.dll
0x00007ffd26ed0000 - 0x00007ffd26ff4000 C:\WINDOWS\System32\RPCRT4.dll
0x00007ffd26bd0000 - 0x00007ffd26d60000 C:\WINDOWS\System32\USER32.dll
0x00007ffd24760000 - 0x00007ffd24780000 C:\WINDOWS\System32\win32u.dll
0x00007ffd26ea0000 - 0x00007ffd26ec8000 C:\WINDOWS\System32\GDI32.dll
0x00007ffd24780000 - 0x00007ffd24912000 C:\WINDOWS\System32\gdi32full.dll
0x00007ffd24610000 - 0x00007ffd246af000 C:\WINDOWS\System32\msvcp_win.dll
0x00007ffd238c0000 - 0x00007ffd239ba000 C:\WINDOWS\System32\ucrtbase.dll
0x00007ffd1a010000 - 0x00007ffd1a279000 C:\WINDOWS\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.17134.48_none_b4b2216a3cb4dd3e\COMCTL32.dll
0x00007ffd270d0000 - 0x00007ffd273f3000 C:\WINDOWS\System32\combase.dll
0x00007ffd24590000 - 0x00007ffd2460a000 C:\WINDOWS\System32\bcryptPrimitives.dll
0x00007ffd26a40000 - 0x00007ffd26a6d000 C:\WINDOWS\System32\IMM32.DLL
0x000000006f2c0000 - 0x000000006f392000 C:\Program Files\Android\Android Studio\jre\jre\bin\msvcr100.dll
0x0000000071650000 - 0x0000000071e8f000 C:\Program Files\Android\Android Studio\jre\jre\bin\server\jvm.dll
0x00007ffd27060000 - 0x00007ffd27068000 C:\WINDOWS\System32\PSAPI.DLL
0x00007ffd1ec20000 - 0x00007ffd1ec29000 C:\WINDOWS\SYSTEM32\WSOCK32.dll
0x00007ffd269d0000 - 0x00007ffd26a3c000 C:\WINDOWS\System32\WS2_32.dll
0x00007ffd1bba0000 - 0x00007ffd1bbaa000 C:\WINDOWS\SYSTEM32\VERSION.dll
0x00007ffd21540000 - 0x00007ffd21563000 C:\WINDOWS\SYSTEM32\WINMM.dll
0x00007ffd21510000 - 0x00007ffd2153a000 C:\WINDOWS\SYSTEM32\winmmbase.dll
0x00007ffd242c0000 - 0x00007ffd24309000 C:\WINDOWS\System32\cfgmgr32.dll
0x00007ffd1eb90000 - 0x00007ffd1eb9f000 C:\Program Files\Android\Android Studio\jre\jre\bin\verify.dll
0x00007ffd1a4c0000 - 0x00007ffd1a4e9000 C:\Program Files\Android\Android Studio\jre\jre\bin\java.dll
0x00007ffd1e0e0000 - 0x00007ffd1e0f6000 C:\Program Files\Android\Android Studio\jre\jre\bin\zip.dll
0x00007ffd24d90000 - 0x00007ffd261d0000 C:\WINDOWS\System32\SHELL32.dll
0x00007ffd26a70000 - 0x00007ffd26b19000 C:\WINDOWS\System32\shcore.dll
0x00007ffd23bb0000 - 0x00007ffd242bd000 C:\WINDOWS\System32\windows.storage.dll
0x00007ffd27070000 - 0x00007ffd270c1000 C:\WINDOWS\System32\shlwapi.dll
0x00007ffd23880000 - 0x00007ffd23891000 C:\WINDOWS\System32\kernel.appcore.dll
0x00007ffd23800000 - 0x00007ffd2381f000 C:\WINDOWS\System32\profapi.dll
0x00007ffd23820000 - 0x00007ffd2386c000 C:\WINDOWS\System32\powrprof.dll
0x00007ffd23870000 - 0x00007ffd2387a000 C:\WINDOWS\System32\FLTLIB.DLL
0x00007ffd1dd90000 - 0x00007ffd1ddaa000 C:\Program Files\Android\Android Studio\jre\jre\bin\net.dll
0x00007ffd23020000 - 0x00007ffd23086000 C:\WINDOWS\system32\mswsock.dll
0x00007ffd1d2e0000 - 0x00007ffd1d2f1000 C:\Program Files\Android\Android Studio\jre\jre\bin\nio.dll
0x00007ffd1ebe0000 - 0x00007ffd1ebfe000 C:\Users\hyunh\.gradle\native\25\windows-amd64\native-platform.dll
0x00007ffd1eb60000 - 0x00007ffd1eb6d000 C:\Program Files\Android\Android Studio\jre\jre\bin\management.dll
0x00007ffd231d0000 - 0x00007ffd231e7000 C:\WINDOWS\SYSTEM32\CRYPTSP.dll
0x00007ffd22c00000 - 0x00007ffd22c33000 C:\WINDOWS\system32\rsaenh.dll
0x00007ffd23300000 - 0x00007ffd23325000 C:\WINDOWS\SYSTEM32\bcrypt.dll
0x00007ffd23700000 - 0x00007ffd23728000 C:\WINDOWS\SYSTEM32\USERENV.dll
0x00007ffd231f0000 - 0x00007ffd231fb000 C:\WINDOWS\SYSTEM32\CRYPTBASE.dll
0x00007ffd22da0000 - 0x00007ffd22dd8000 C:\WINDOWS\SYSTEM32\IPHLPAPI.DLL
0x00007ffd26d60000 - 0x00007ffd26d68000 C:\WINDOWS\System32\NSI.dll
0x00007ffd1b8c0000 - 0x00007ffd1b8d6000 C:\WINDOWS\SYSTEM32\dhcpcsvc6.DLL
0x00007ffd1bc20000 - 0x00007ffd1bc3a000 C:\WINDOWS\SYSTEM32\dhcpcsvc.DLL
0x00007ffd0d110000 - 0x00007ffd0d12e000 C:\Users\hyunh\AppData\Local\Temp\native-platform8681612697109627537dir\native-platform.dll
VM Arguments:
jvm_args: -XX:+HeapDumpOnOutOfMemoryError -Xmx1024m -Dfile.encoding=x-windows-949 -Duser.country=KR -Duser.language=ko -Duser.variant
java_command: org.gradle.launcher.daemon.bootstrap.GradleDaemon 4.4.1
java_class_path (initial): C:\Users\hyunh\.gradle\wrapper\dists\gradle-4.4.1-all\2kpyt0ea6hyxavvt21uml23gd\gradle-4.4.1\lib\gradle-launcher-4.4.1.jar
Launcher Type: SUN_STANDARD
Environment Variables:
PATH=C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\Program Files\PuTTY\;C:\Program Files (x86)\MySQL\MySQL Utilities 1.6\;C:\Program Files\nodejs\;C:\WINDOWS\System32\OpenSSH\;C:\Users\hyunh\Anaconda3;C:\Users\hyunh\Anaconda3\Library\mingw-w64\bin;C:\Users\hyunh\Anaconda3\Library\usr\bin;C:\Users\hyunh\Anaconda3\Library\bin;C:\Users\hyunh\Anaconda3\Scripts;C:\Users\hyunh\AppData\Local\Microsoft\WindowsApps;C:\Program Files\Microsoft VS Code\bin;C:\Users\hyunh\AppData\Local\atom\bin;C:\Users\hyunh\AppData\Roaming\npm;%USERPROFILE%\AppData\Local\Microsoft\WindowsApps;
USERNAME=hyunh
OS=Windows_NT
PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 69 Stepping 1, GenuineIntel
--------------- S Y S T E M ---------------
OS: Windows 10.0 , 64 bit Build 17134 (10.0.17134.1)
CPU:total 4 (initial active 4) (2 cores per cpu, 2 threads per core) family 6 model 69 stepping 1, cmov, cx8, fxsr, mmx, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, avx, avx2, aes, clmul, erms, lzcnt, ht, tsc, tscinvbit, bmi1, bmi2
Memory: 4k page, physical 4100120k(206780k free), swap 10781468k(5568k free)
vm_info: OpenJDK 64-Bit Server VM (25.152-b02) for windows-amd64 JRE (1.8.0_152-release-1024-b02), built by "builder" with MS VC++ 10.0 (VS2010)
time: Mon May 28 22:07:52 2018
elapsed time: 126 seconds (0d 0h 2m 6s)
#
# There is insufficient memory for the Java Runtime Environment to continue.
# Native memory allocation (malloc) failed to allocate 200416 bytes for Chunk::new
# Possible reasons:
# The system is out of physical RAM or swap space
# In 32 bit mode, the process size limit was hit
# Possible solutions:
# Reduce memory load on the system
# Increase physical memory or swap space
# Check if swap backing store is full
# Use 64 bit Java on a 64 bit OS
# Decrease Java heap size (-Xmx/-Xms)
# Decrease number of Java threads
# Decrease Java thread stack sizes (-Xss)
# Set larger code cache with -XX:ReservedCodeCacheSize=
# This output file may be truncated or incomplete.
#
# Out of Memory Error (allocation.cpp:390), pid=3516, tid=0x0000000000001fdc
#
# JRE version: OpenJDK Runtime Environment (8.0_152-b02) (build 1.8.0_152-release-1024-b02)
# Java VM: OpenJDK 64-Bit Server VM (25.152-b02 mixed mode windows-amd64 compressed oops)
# Failed to write core dump. Minidumps are not enabled by default on client versions of Windows
#
--------------- T H R E A D ---------------
Current thread (0x0000000015479800): JavaThread "C2 CompilerThread0" daemon [_thread_in_native, id=8156, stack(0x0000000016e10000,0x0000000016f10000)]
Stack: [0x0000000016e10000,0x0000000016f10000]
[error occurred during error reporting (printing stack bounds), id 0xc0000005]
Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
Current CompileTask:
C2: 98063 14174 4 com.android.tools.r8.code.InstructionFactory::readSequenceFrom (116 bytes)
--------------- P R O C E S S ---------------
Java Threads: ( => current thread )
0x000000001bbe9800 JavaThread "ForkJoinPool-8-worker-0" daemon [_thread_in_native, id=7164, stack(0x0000000029350000,0x0000000029450000)]
0x000000001bbe0800 JavaThread "ForkJoinPool-8-worker-1" daemon [_thread_blocked, id=11188, stack(0x0000000029250000,0x0000000029350000)]
0x000000001bbee000 JavaThread "ForkJoinPool-9-worker-0" daemon [_thread_in_native, id=11352, stack(0x0000000029150000,0x0000000029250000)]
0x000000001bbea800 JavaThread "ForkJoinPool-9-worker-1" daemon [_thread_blocked, id=3024, stack(0x0000000029050000,0x0000000029150000)]
0x000000001bbeb000 JavaThread "ForkJoinPool.commonPool-worker-0" daemon [_thread_blocked, id=1648, stack(0x0000000028f50000,0x0000000029050000)]
0x000000001bbe6800 JavaThread "ForkJoinPool.commonPool-worker-3" daemon [_thread_blocked, id=13384, stack(0x0000000028250000,0x0000000028350000)]
0x000000001bbe3000 JavaThread "ForkJoinPool.commonPool-worker-2" daemon [_thread_in_native, id=8128, stack(0x0000000028150000,0x0000000028250000)]
0x0000000019f87800 JavaThread "ForkJoinPool.commonPool-worker-1" daemon [_thread_in_Java, id=11308, stack(0x0000000022a50000,0x0000000022b50000)]
0x0000000019f7e000 JavaThread "Task worker for ':' Thread 3" [_thread_blocked, id=4488, stack(0x0000000021c50000,0x0000000021d50000)]
0x0000000019f81000 JavaThread "Task worker for ':' Thread 2" [_thread_blocked, id=10188, stack(0x0000000021b50000,0x0000000021c50000)]
0x0000000019f7d000 JavaThread "Task worker for ':'" [_thread_blocked, id=12508, stack(0x0000000021a50000,0x0000000021b50000)]
0x0000000019f7e800 JavaThread "Cache worker for Build Output Cleanup Cache (C:\Users\hyunh\Desktop\Awsome_Android_Global_Calender\.gradle\buildOutputCleanup)" [_thread_blocked, id=7844, stack(0x0000000021950000,0x0000000021a50000)]
0x0000000019f79800 JavaThread "Cache worker for task history cache (C:\Users\hyunh\Desktop\Awsome_Android_Global_Calender\.gradle\4.4.1\taskHistory)" [_thread_blocked, id=3656, stack(0x0000000020fe0000,0x00000000210e0000)]
0x0000000019f7b800 JavaThread "Cache worker for file content cache (C:\Users\hyunh\Desktop\Awsome_Android_Global_Calender\.gradle\4.4.1\fileContent)" [_thread_blocked, id=6532, stack(0x0000000020630000,0x0000000020730000)]
0x000000001bead800 JavaThread "Memory manager" [_thread_blocked, id=12128, stack(0x000000001ed40000,0x000000001ee40000)]
0x000000001bea8800 JavaThread "build operations Thread 4" [_thread_blocked, id=4132, stack(0x000000001ec40000,0x000000001ed40000)]
0x000000001bea9000 JavaThread "build operations Thread 3" [_thread_blocked, id=9776, stack(0x000000001eb40000,0x000000001ec40000)]
0x000000001beab800 JavaThread "build operations Thread 2" [_thread_blocked, id=7560, stack(0x000000001ea40000,0x000000001eb40000)]
0x000000001beac000 JavaThread "build operations" [_thread_blocked, id=14116, stack(0x000000001e940000,0x000000001ea40000)]
0x000000001beaf000 JavaThread "Cache worker for Artifact transforms cache (C:\Users\hyunh\.gradle\caches\transforms-1)" [_thread_blocked, id=14128, stack(0x000000001e260000,0x000000001e360000)]
0x0000000018972000 JavaThread "Cache worker for file hash cache (C:\Users\hyunh\Desktop\Awsome_Android_Global_Calender\.gradle\4.4.1\fileHashes)" [_thread_blocked, id=14216, stack(0x000000001ab90000,0x000000001ac90000)]
0x00000000178e2000 JavaThread "File lock request listener" [_thread_in_native, id=2428, stack(0x0000000019ac0000,0x0000000019bc0000)]
0x00000000177a1800 JavaThread "Cache worker for file hash cache (C:\Users\hyunh\.gradle\caches\4.4.1\fileHashes)" [_thread_blocked, id=13604, stack(0x00000000199c0000,0x0000000019ac0000)]
0x000000001696c800 JavaThread "Asynchronous log dispatcher for DefaultDaemonConnection: socket connection from /127.0.0.1:57164 to /127.0.0.1:57165" [_thread_blocked, id=12968, stack(0x00000000195c0000,0x00000000196c0000)]
0x0000000017fc3800 JavaThread "Daemon worker" [_thread_blocked, id=11728, stack(0x00000000194c0000,0x00000000195c0000)]
0x0000000017840000 JavaThread "Cancel handler" [_thread_blocked, id=9080, stack(0x00000000193c0000,0x00000000194c0000)]
0x0000000016a6b800 JavaThread "Handler for socket connection from /127.0.0.1:57164 to /127.0.0.1:57165" [_thread_in_native, id=13124, stack(0x00000000190c0000,0x00000000191c0000)]
0x0000000016a6a800 JavaThread "Daemon" [_thread_blocked, id=1288, stack(0x0000000018fc0000,0x00000000190c0000)]
0x0000000017614800 JavaThread "Daemon periodic checks" [_thread_blocked, id=6048, stack(0x0000000018ec0000,0x0000000018fc0000)]
0x0000000016a69000 JavaThread "Incoming local TCP Connector on port 57164" [_thread_in_native, id=4500, stack(0x0000000018ce0000,0x0000000018de0000)]
0x000000001686d800 JavaThread "Service Thread" daemon [_thread_blocked, id=10756, stack(0x0000000017110000,0x0000000017210000)]
0x000000001547d800 JavaThread "C1 CompilerThread2" daemon [_thread_blocked, id=13756, stack(0x0000000017010000,0x0000000017110000)]
0x000000001547a000 JavaThread "C2 CompilerThread1" daemon [_thread_in_native, id=3004, stack(0x0000000016f10000,0x0000000017010000)]
=>0x0000000015479800 JavaThread "C2 CompilerThread0" daemon [_thread_in_native, id=8156, stack(0x0000000016e10000,0x0000000016f10000)]
0x0000000015478800 JavaThread "Attach Listener" daemon [_thread_blocked, id=7448, stack(0x0000000016d10000,0x0000000016e10000)]
0x0000000015416800 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=3872, stack(0x0000000016c10000,0x0000000016d10000)]
0x0000000002d4c000 JavaThread "Finalizer" daemon [_thread_blocked, id=8572, stack(0x0000000016680000,0x0000000016780000)]
0x0000000002d41000 JavaThread "Reference Handler" daemon [_thread_blocked, id=8108, stack(0x0000000016580000,0x0000000016680000)]
0x0000000002c4e000 JavaThread "main" [_thread_blocked, id=9264, stack(0x0000000002ac0000,0x0000000002bc0000)]
Other Threads:
0x00000000153e5800 VMThread [stack: 0x0000000016480000,0x0000000016580000] [id=1204]
0x000000001686e800 WatcherThread [stack: 0x0000000017210000,0x0000000017310000] [id=13968]
VM state:not at safepoint (normal execution)
VM Mutex/Monitor currently owned by a thread: None
Heap:
PSYoungGen total 252416K, used 131304K [0x00000000eab00000, 0x00000000fb800000, 0x0000000100000000)
eden space 232960K, 56% used [0x00000000eab00000,0x00000000f2b3a198,0x00000000f8e80000)
from space 19456K, 0% used [0x00000000f8e80000,0x00000000f8e80000,0x00000000fa180000)
to space 17920K, 82% used [0x00000000fa180000,0x00000000fafdb8e0,0x00000000fb300000)
ParOldGen total 94720K, used 94417K [0x00000000c0000000, 0x00000000c5c80000, 0x00000000eab00000)
object space 94720K, 99% used [0x00000000c0000000,0x00000000c5c34608,0x00000000c5c80000)
Metaspace used 71731K, capacity 74256K, committed 76160K, reserved 1116160K
class space used 9444K, capacity 9977K, committed 10368K, reserved 1048576K
Card table byte_map: [0x0000000012110000,0x0000000012320000] byte_map_base: 0x0000000011b10000
Marking Bits: (ParMarkBitMap*) 0x0000000071e14970
Begin Bits: [0x0000000012880000, 0x0000000013880000)
End Bits: [0x0000000013880000, 0x0000000014880000)
Polling page: 0x0000000000970000
CodeCache: size=245760Kb used=40506Kb max_used=40589Kb free=205253Kb
bounds [0x0000000002d50000, 0x0000000005530000, 0x0000000011d50000]
total_blobs=12615 nmethods=11807 adapters=719
compilation: enabled
Compilation events (10 events):
Event: 97.969 Thread 0x0000000015479800 nmethod 14206 0x0000000003a41290 code [0x0000000003a413e0, 0x0000000003a41488]
Event: 97.970 Thread 0x0000000015479800 14161 ! 4 sun.nio.ch.NativeThreadSet::remove (50 bytes)
Event: 97.979 Thread 0x000000001547d800 14238 s 3 sun.misc.Cleaner::add (26 bytes)
Event: 97.979 Thread 0x000000001547d800 nmethod 14238 0x0000000004759210 code [0x0000000004759380, 0x00000000047596d0]
Event: 97.981 Thread 0x0000000015479800 nmethod 14161 0x0000000004758cd0 code [0x0000000004758e20, 0x00000000047590b8]
Event: 97.983 Thread 0x0000000015479800 14214 4 java.util.concurrent.ForkJoinPool::helpStealer (394 bytes)
Event: 97.991 Thread 0x000000001547d800 14239 3 sun.nio.fs.WindowsPath::getFileName (87 bytes)
Event: 97.992 Thread 0x000000001547d800 nmethod 14239 0x000000000475a550 code [0x000000000475a720, 0x000000000475b218]
Event: 97.995 Thread 0x0000000015479800 nmethod 14214 0x00000000047f0fd0 code [0x00000000047f1120, 0x00000000047f14d8]
Event: 97.997 Thread 0x0000000015479800 14174 4 com.android.tools.r8.code.InstructionFactory::readSequenceFrom (116 bytes)
GC Heap History (10 events):
Event: 78.574 GC heap before
{Heap before GC invocations=28 (full 3):
PSYoungGen total 219648K, used 211439K [0x00000000eab00000, 0x00000000f9400000, 0x0000000100000000)
eden space 205824K, 100% used [0x00000000eab00000,0x00000000f7400000,0x00000000f7400000)
from space 13824K, 40% used [0x00000000f8680000,0x00000000f8bfbf70,0x00000000f9400000)
to space 16384K, 0% used [0x00000000f7400000,0x00000000f7400000,0x00000000f8400000)
ParOldGen total 86528K, used 46777K [0x00000000c0000000, 0x00000000c5480000, 0x00000000eab00000)
object space 86528K, 54% used [0x00000000c0000000,0x00000000c2dae550,0x00000000c5480000)
Metaspace used 72043K, capacity 75036K, committed 75264K, reserved 1114112K
class space used 9616K, capacity 10235K, committed 10240K, reserved 1048576K
Event: 78.673 GC heap after
Heap after GC invocations=28 (full 3):
PSYoungGen total 222208K, used 13713K [0x00000000eab00000, 0x00000000fb300000, 0x0000000100000000)
eden space 205824K, 0% used [0x00000000eab00000,0x00000000eab00000,0x00000000f7400000)
from space 16384K, 83% used [0x00000000f7400000,0x00000000f8164680,0x00000000f8400000)
to space 17920K, 0% used [0x00000000fa180000,0x00000000fa180000,0x00000000fb300000)
ParOldGen total 86528K, used 46785K [0x00000000c0000000, 0x00000000c5480000, 0x00000000eab00000)
object space 86528K, 54% used [0x00000000c0000000,0x00000000c2db0550,0x00000000c5480000)
Metaspace used 72043K, capacity 75036K, committed 75264K, reserved 1114112K
class space used 9616K, capacity 10235K, committed 10240K, reserved 1048576K
}
Event: 82.013 GC heap before
{Heap before GC invocations=29 (full 3):
PSYoungGen total 222208K, used 219537K [0x00000000eab00000, 0x00000000fb300000, 0x0000000100000000)
eden space 205824K, 100% used [0x00000000eab00000,0x00000000f7400000,0x00000000f7400000)
from space 16384K, 83% used [0x00000000f7400000,0x00000000f8164680,0x00000000f8400000)
to space 17920K, 0% used [0x00000000fa180000,0x00000000fa180000,0x00000000fb300000)
ParOldGen total 86528K, used 46785K [0x00000000c0000000, 0x00000000c5480000, 0x00000000eab00000)
object space 86528K, 54% used [0x00000000c0000000,0x00000000c2db0550,0x00000000c5480000)
Metaspace used 72075K, capacity 75104K, committed 75264K, reserved 1114112K
class space used 9616K, capacity 10235K, committed 10240K, reserved 1048576K
Event: 82.140 GC heap after
Heap after GC invocations=29 (full 3):
PSYoungGen total 250880K, used 15484K [0x00000000eab00000, 0x00000000fb800000, 0x0000000100000000)
eden space 232960K, 0% used [0x00000000eab00000,0x00000000eab00000,0x00000000f8e80000)
from space 17920K, 86% used [0x00000000fa180000,0x00000000fb09f240,0x00000000fb300000)
to space 19456K, 0% used [0x00000000f8e80000,0x00000000f8e80000,0x00000000fa180000)
ParOldGen total 86528K, used 46793K [0x00000000c0000000, 0x00000000c5480000, 0x00000000eab00000)
object space 86528K, 54% used [0x00000000c0000000,0x00000000c2db2550,0x00000000c5480000)
Metaspace used 72075K, capacity 75104K, committed 75264K, reserved 1114112K
class space used 9616K, capacity 10235K, committed 10240K, reserved 1048576K
}
Event: 86.325 GC heap before
{Heap before GC invocations=30 (full 3):
PSYoungGen total 250880K, used 248444K [0x00000000eab00000, 0x00000000fb800000, 0x0000000100000000)
eden space 232960K, 100% used [0x00000000eab00000,0x00000000f8e80000,0x00000000f8e80000)
from space 17920K, 86% used [0x00000000fa180000,0x00000000fb09f240,0x00000000fb300000)
to space 19456K, 0% used [0x00000000f8e80000,0x00000000f8e80000,0x00000000fa180000)
ParOldGen total 86528K, used 46793K [0x00000000c0000000, 0x00000000c5480000, 0x00000000eab00000)
object space 86528K, 54% used [0x00000000c0000000,0x00000000c2db2550,0x00000000c5480000)
Metaspace used 72109K, capacity 75104K, committed 75264K, reserved 1114112K
class space used 9617K, capacity 10235K, committed 10240K, reserved 1048576K
Event: 86.345 GC heap after
Heap after GC invocations=30 (full 3):
PSYoungGen total 252416K, used 3904K [0x00000000eab00000, 0x00000000fb800000, 0x0000000100000000)
eden space 232960K, 0% used [0x00000000eab00000,0x00000000eab00000,0x00000000f8e80000)
from space 19456K, 20% used [0x00000000f8e80000,0x00000000f9250080,0x00000000fa180000)
to space 17920K, 0% used [0x00000000fa180000,0x00000000fa180000,0x00000000fb300000)
ParOldGen total 86528K, used 46873K [0x00000000c0000000, 0x00000000c5480000, 0x00000000eab00000)
object space 86528K, 54% used [0x00000000c0000000,0x00000000c2dc6550,0x00000000c5480000)
Metaspace used 72109K, capacity 75104K, committed 75264K, reserved 1114112K
class space used 9617K, capacity 10235K, committed 10240K, reserved 1048576K
}
Event: 92.009 GC heap before
{Heap before GC invocations=31 (full 3):
PSYoungGen total 252416K, used 236864K [0x00000000eab00000, 0x00000000fb800000, 0x0000000100000000)
eden space 232960K, 100% used [0x00000000eab00000,0x00000000f8e80000,0x00000000f8e80000)
from space 19456K, 20% used [0x00000000f8e80000,0x00000000f9250080,0x00000000fa180000)
to space 17920K, 0% used [0x00000000fa180000,0x00000000fa180000,0x00000000fb300000)
ParOldGen total 86528K, used 46873K [0x00000000c0000000, 0x00000000c5480000, 0x00000000eab00000)
object space 86528K, 54% used [0x00000000c0000000,0x00000000c2dc6550,0x00000000c5480000)
Metaspace used 72766K, capacity 75824K, committed 76160K, reserved 1116160K
class space used 9677K, capacity 10287K, committed 10368K, reserved 1048576K
Event: 92.300 GC heap after
Heap after GC invocations=31 (full 3):
PSYoungGen total 252416K, used 236864K [0x00000000eab00000, 0x00000000fb800000, 0x0000000100000000)
eden space 232960K, 100% used [0x00000000eab00000,0x00000000f8e80000,0x00000000f8e80000)
from space 19456K, 20% used [0x00000000f8e80000,0x00000000f9250080,0x00000000fa180000)
to space 17920K, 99% used [0x00000000fa180000,0x00000000fb2f8c78,0x00000000fb300000)
ParOldGen total 94720K, used 94718K [0x00000000c0000000, 0x00000000c5c80000, 0x00000000eab00000)
object space 94720K, 99% used [0x00000000c0000000,0x00000000c5c7fa38,0x00000000c5c80000)
Metaspace used 72766K, capacity 75824K, committed 76160K, reserved 1116160K
class space used 9677K, capacity 10287K, committed 10368K, reserved 1048576K
}
Event: 92.300 GC heap before
{Heap before GC invocations=32 (full 4):
PSYoungGen total 252416K, used 236864K [0x00000000eab00000, 0x00000000fb800000, 0x0000000100000000)
eden space 232960K, 100% used [0x00000000eab00000,0x00000000f8e80000,0x00000000f8e80000)
from space 19456K, 20% used [0x00000000f8e80000,0x00000000f9250080,0x00000000fa180000)
to space 17920K, 99% used [0x00000000fa180000,0x00000000fb2f8c78,0x00000000fb300000)
ParOldGen total 94720K, used 94718K [0x00000000c0000000, 0x00000000c5c80000, 0x00000000eab00000)
object space 94720K, 99% used [0x00000000c0000000,0x00000000c5c7fa38,0x00000000c5c80000)
Metaspace used 72766K, capacity 75824K, committed 76160K, reserved 1116160K
class space used 9677K, capacity 10287K, committed 10368K, reserved 1048576K
Event: 95.541 GC heap after
Heap after GC invocations=32 (full 4):
PSYoungGen total 252416K, used 0K [0x00000000eab00000, 0x00000000fb800000, 0x0000000100000000)
eden space 232960K, 0% used [0x00000000eab00000,0x00000000eab00000,0x00000000f8e80000)
from space 19456K, 0% used [0x00000000f8e80000,0x00000000f8e80000,0x00000000fa180000)
to space 17920K, 82% used [0x00000000fa180000,0x00000000fafdb8e0,0x00000000fb300000)
ParOldGen total 94720K, used 94417K [0x00000000c0000000, 0x00000000c5c80000, 0x00000000eab00000)
object space 94720K, 99% used [0x00000000c0000000,0x00000000c5c34608,0x00000000c5c80000)
Metaspace used 71680K, capacity 74226K, committed 76160K, reserved 1116160K
class space used 9440K, capacity 9970K, committed 10368K, reserved 1048576K
}
Deoptimization events (10 events):
Event: 97.156 Thread 0x000000001bbeb000 Uncommon trap: reason=array_check action=maybe_recompile pc=0x0000000005433e24 method=java.util.TimSort.mergeHi(IIII)V @ 419
Event: 97.156 Thread 0x000000001bbeb000 Uncommon trap: reason=array_check action=maybe_recompile pc=0x0000000005433fe8 method=java.util.TimSort.mergeHi(IIII)V @ 657
Event: 97.187 Thread 0x000000001bbeb000 Uncommon trap: reason=bimorphic action=maybe_recompile pc=0x00000000050c6510 method=java.util.Iterator.forEachRemaining(Ljava/util/function/Consumer;)V @ 6
Event: 97.311 Thread 0x000000001bbe6800 Uncommon trap: reason=class_check action=maybe_recompile pc=0x0000000003984970 method=com.android.tools.r8.graph.DexAnnotationSetRefList.collectMixedSectionItems(Lcom/android/tools/r8/dex/MixedSectionCollection;)V @ 10
Event: 97.311 Thread 0x000000001bbe6800 Uncommon trap: reason=class_check action=maybe_recompile pc=0x0000000003984970 method=com.android.tools.r8.graph.DexAnnotationSetRefList.collectMixedSectionItems(Lcom/android/tools/r8/dex/MixedSectionCollection;)V @ 10
Event: 97.312 Thread 0x000000001bbe6800 Uncommon trap: reason=class_check action=maybe_recompile pc=0x0000000003984970 method=com.android.tools.r8.graph.DexAnnotationSetRefList.collectMixedSectionItems(Lcom/android/tools/r8/dex/MixedSectionCollection;)V @ 10
Event: 97.312 Thread 0x000000001bbe6800 Uncommon trap: reason=class_check action=maybe_recompile pc=0x0000000003984970 method=com.android.tools.r8.graph.DexAnnotationSetRefList.collectMixedSectionItems(Lcom/android/tools/r8/dex/MixedSectionCollection;)V @ 10
Event: 97.328 Thread 0x000000001bbe9800 Uncommon trap: reason=bimorphic action=maybe_recompile pc=0x00000000050c6510 method=java.util.Iterator.forEachRemaining(Ljava/util/function/Consumer;)V @ 6
Event: 97.484 Thread 0x000000001bbe8000 Uncommon trap: reason=array_check action=maybe_recompile pc=0x0000000005433e24 method=java.util.TimSort.mergeHi(IIII)V @ 419
Event: 97.489 Thread 0x000000001bbe8000 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00000000031c018c method=com.android.tools.r8.dex.DexOutputBuffer.ensureSpaceFor(I)V @ 8
Classes redefined (0 events):
No events
Internal exceptions (10 events):
Event: 97.363 Thread 0x000000001bbe6800 Exception <a 'sun/nio/fs/WindowsException'> (0x00000000f06c7758) thrown at [D:\src\AOSP-openjdk-cygwin\jdk8u\hotspot\src\share\vm\prims\jni.cpp, line 709]
Event: 97.373 Thread 0x000000001bbe3000 Exception <a 'sun/nio/fs/WindowsException'> (0x00000000f09841c8) thrown at [D:\src\AOSP-openjdk-cygwin\jdk8u\hotspot\src\share\vm\prims\jni.cpp, line 709]
Event: 97.451 Thread 0x000000001bbe9800 Exception <a 'sun/nio/fs/WindowsException'> (0x00000000f0bc26c0) thrown at [D:\src\AOSP-openjdk-cygwin\jdk8u\hotspot\src\share\vm\prims\jni.cpp, line 709]
Event: 97.508 Thread 0x000000001bbe8000 Exception <a 'sun/nio/fs/WindowsException'> (0x00000000f13ae6d8) thrown at [D:\src\AOSP-openjdk-cygwin\jdk8u\hotspot\src\share\vm\prims\jni.cpp, line 709]
Event: 97.611 Thread 0x000000001bbeb000 Exception <a 'sun/nio/fs/WindowsException'> (0x00000000f184ff28) thrown at [D:\src\AOSP-openjdk-cygwin\jdk8u\hotspot\src\share\vm\prims\jni.cpp, line 709]
Event: 97.733 Thread 0x000000001bbe6800 Exception <a 'sun/nio/fs/WindowsException'> (0x00000000f1f37df0) thrown at [D:\src\AOSP-openjdk-cygwin\jdk8u\hotspot\src\share\vm\prims\jni.cpp, line 709]
Event: 97.787 Thread 0x000000001bbed800 Exception <a 'sun/nio/fs/WindowsException'> (0x00000000f1e7fba8) thrown at [D:\src\AOSP-openjdk-cygwin\jdk8u\hotspot\src\share\vm\prims\jni.cpp, line 709]
Event: 97.891 Thread 0x000000001bbe9800 Exception <a 'sun/nio/fs/WindowsException'> (0x00000000f28397b8) thrown at [D:\src\AOSP-openjdk-cygwin\jdk8u\hotspot\src\share\vm\prims\jni.cpp, line 709]
Event: 97.976 Thread 0x000000001bbee000 Exception <a 'sun/nio/fs/WindowsException'> (0x00000000f28b64f8) thrown at [D:\src\AOSP-openjdk-cygwin\jdk8u\hotspot\src\share\vm\prims\jni.cpp, line 709]
Event: 97.996 Thread 0x0000000019f87800 Exception <a 'sun/nio/fs/WindowsException'> (0x00000000f28fcd88) thrown at [D:\src\AOSP-openjdk-cygwin\jdk8u\hotspot\src\share\vm\prims\jni.cpp, line 709]
Events (10 events):
Event: 97.975 Thread 0x000000001bbe1800 Thread exited: 0x000000001bbe1800
Event: 97.975 Executing VM operation: RevokeBias
Event: 97.976 Executing VM operation: RevokeBias done
Event: 97.976 Thread 0x000000001bbed800 Thread exited: 0x000000001bbed800
Event: 97.993 Thread 0x000000001547d800 flushing nmethod 0x00000000047f0d10
Event: 97.993 Thread 0x000000001547d800 flushing nmethod 0x000000000486ba90
Event: 97.994 Thread 0x000000001547d800 flushing nmethod 0x0000000004892e90
Event: 97.995 Thread 0x0000000015479800 flushing nmethod 0x000000000498b290
Event: 97.996 Thread 0x0000000015479800 flushing nmethod 0x00000000049c5810
Event: 97.996 Thread 0x0000000015479800 flushing nmethod 0x0000000004a5d710
Dynamic libraries:
0x00007ff6803e0000 - 0x00007ff680411000 C:\Program Files\Android\Android Studio\jre\bin\java.exe
0x00007ffd274f0000 - 0x00007ffd276d1000 C:\WINDOWS\SYSTEM32\ntdll.dll
0x00007ffd27400000 - 0x00007ffd274b2000 C:\WINDOWS\System32\KERNEL32.DLL
0x00007ffd24310000 - 0x00007ffd24583000 C:\WINDOWS\System32\KERNELBASE.dll
0x00007ffd26b20000 - 0x00007ffd26bc1000 C:\WINDOWS\System32\ADVAPI32.dll
0x00007ffd263f0000 - 0x00007ffd2648e000 C:\WINDOWS\System32\msvcrt.dll
0x00007ffd27000000 - 0x00007ffd2705b000 C:\WINDOWS\System32\sechost.dll
0x00007ffd26ed0000 - 0x00007ffd26ff4000 C:\WINDOWS\System32\RPCRT4.dll
0x00007ffd26bd0000 - 0x00007ffd26d60000 C:\WINDOWS\System32\USER32.dll
0x00007ffd24760000 - 0x00007ffd24780000 C:\WINDOWS\System32\win32u.dll
0x00007ffd26ea0000 - 0x00007ffd26ec8000 C:\WINDOWS\System32\GDI32.dll
0x00007ffd24780000 - 0x00007ffd24912000 C:\WINDOWS\System32\gdi32full.dll
0x00007ffd24610000 - 0x00007ffd246af000 C:\WINDOWS\System32\msvcp_win.dll
0x00007ffd238c0000 - 0x00007ffd239ba000 C:\WINDOWS\System32\ucrtbase.dll
0x00007ffd1a010000 - 0x00007ffd1a279000 C:\WINDOWS\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.17134.48_none_b4b2216a3cb4dd3e\COMCTL32.dll
0x00007ffd270d0000 - 0x00007ffd273f3000 C:\WINDOWS\System32\combase.dll
0x00007ffd24590000 - 0x00007ffd2460a000 C:\WINDOWS\System32\bcryptPrimitives.dll
0x00007ffd26a40000 - 0x00007ffd26a6d000 C:\WINDOWS\System32\IMM32.DLL
0x000000006f2c0000 - 0x000000006f392000 C:\Program Files\Android\Android Studio\jre\jre\bin\msvcr100.dll
0x0000000071650000 - 0x0000000071e8f000 C:\Program Files\Android\Android Studio\jre\jre\bin\server\jvm.dll
0x00007ffd27060000 - 0x00007ffd27068000 C:\WINDOWS\System32\PSAPI.DLL
0x00007ffd1ec20000 - 0x00007ffd1ec29000 C:\WINDOWS\SYSTEM32\WSOCK32.dll
0x00007ffd269d0000 - 0x00007ffd26a3c000 C:\WINDOWS\System32\WS2_32.dll
0x00007ffd1bba0000 - 0x00007ffd1bbaa000 C:\WINDOWS\SYSTEM32\VERSION.dll
0x00007ffd21540000 - 0x00007ffd21563000 C:\WINDOWS\SYSTEM32\WINMM.dll
0x00007ffd21510000 - 0x00007ffd2153a000 C:\WINDOWS\SYSTEM32\winmmbase.dll
0x00007ffd242c0000 - 0x00007ffd24309000 C:\WINDOWS\System32\cfgmgr32.dll
0x00007ffd1eb90000 - 0x00007ffd1eb9f000 C:\Program Files\Android\Android Studio\jre\jre\bin\verify.dll
0x00007ffd1a4c0000 - 0x00007ffd1a4e9000 C:\Program Files\Android\Android Studio\jre\jre\bin\java.dll
0x00007ffd1e0e0000 - 0x00007ffd1e0f6000 C:\Program Files\Android\Android Studio\jre\jre\bin\zip.dll
0x00007ffd24d90000 - 0x00007ffd261d0000 C:\WINDOWS\System32\SHELL32.dll
0x00007ffd26a70000 - 0x00007ffd26b19000 C:\WINDOWS\System32\shcore.dll
0x00007ffd23bb0000 - 0x00007ffd242bd000 C:\WINDOWS\System32\windows.storage.dll
0x00007ffd27070000 - 0x00007ffd270c1000 C:\WINDOWS\System32\shlwapi.dll
0x00007ffd23880000 - 0x00007ffd23891000 C:\WINDOWS\System32\kernel.appcore.dll
0x00007ffd23800000 - 0x00007ffd2381f000 C:\WINDOWS\System32\profapi.dll
0x00007ffd23820000 - 0x00007ffd2386c000 C:\WINDOWS\System32\powrprof.dll
0x00007ffd23870000 - 0x00007ffd2387a000 C:\WINDOWS\System32\FLTLIB.DLL
0x00007ffd1dd90000 - 0x00007ffd1ddaa000 C:\Program Files\Android\Android Studio\jre\jre\bin\net.dll
0x00007ffd23020000 - 0x00007ffd23086000 C:\WINDOWS\system32\mswsock.dll
0x00007ffd1d2e0000 - 0x00007ffd1d2f1000 C:\Program Files\Android\Android Studio\jre\jre\bin\nio.dll
0x00007ffd1ebe0000 - 0x00007ffd1ebfe000 C:\Users\hyunh\.gradle\native\25\windows-amd64\native-platform.dll
0x00007ffd1eb60000 - 0x00007ffd1eb6d000 C:\Program Files\Android\Android Studio\jre\jre\bin\management.dll
0x00007ffd231d0000 - 0x00007ffd231e7000 C:\WINDOWS\SYSTEM32\CRYPTSP.dll
0x00007ffd22c00000 - 0x00007ffd22c33000 C:\WINDOWS\system32\rsaenh.dll
0x00007ffd23300000 - 0x00007ffd23325000 C:\WINDOWS\SYSTEM32\bcrypt.dll
0x00007ffd23700000 - 0x00007ffd23728000 C:\WINDOWS\SYSTEM32\USERENV.dll
0x00007ffd231f0000 - 0x00007ffd231fb000 C:\WINDOWS\SYSTEM32\CRYPTBASE.dll
0x00007ffd22da0000 - 0x00007ffd22dd8000 C:\WINDOWS\SYSTEM32\IPHLPAPI.DLL
0x00007ffd26d60000 - 0x00007ffd26d68000 C:\WINDOWS\System32\NSI.dll
0x00007ffd1b8c0000 - 0x00007ffd1b8d6000 C:\WINDOWS\SYSTEM32\dhcpcsvc6.DLL
0x00007ffd1bc20000 - 0x00007ffd1bc3a000 C:\WINDOWS\SYSTEM32\dhcpcsvc.DLL
0x00007ffd228f0000 - 0x00007ffd22921000 C:\WINDOWS\SYSTEM32\ntmarta.dll
VM Arguments:
jvm_args: -XX:+HeapDumpOnOutOfMemoryError -Xmx1024m -Dfile.encoding=x-windows-949 -Duser.country=KR -Duser.language=ko -Duser.variant
java_command: org.gradle.launcher.daemon.bootstrap.GradleDaemon 4.4.1
java_class_path (initial): C:\Users\hyunh\.gradle\wrapper\dists\gradle-4.4.1-all\2kpyt0ea6hyxavvt21uml23gd\gradle-4.4.1\lib\gradle-launcher-4.4.1.jar
Launcher Type: SUN_STANDARD
Environment Variables:
PATH=C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\Program Files\PuTTY\;C:\Program Files (x86)\MySQL\MySQL Utilities 1.6\;C:\Program Files\nodejs\;C:\WINDOWS\System32\OpenSSH\;C:\Users\hyunh\Anaconda3;C:\Users\hyunh\Anaconda3\Library\mingw-w64\bin;C:\Users\hyunh\Anaconda3\Library\usr\bin;C:\Users\hyunh\Anaconda3\Library\bin;C:\Users\hyunh\Anaconda3\Scripts;C:\Users\hyunh\AppData\Local\Microsoft\WindowsApps;C:\Program Files\Microsoft VS Code\bin;C:\Users\hyunh\AppData\Local\atom\bin;C:\Users\hyunh\AppData\Roaming\npm;%USERPROFILE%\AppData\Local\Microsoft\WindowsApps;
USERNAME=hyunh
OS=Windows_NT
PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 69 Stepping 1, GenuineIntel
--------------- S Y S T E M ---------------
OS: Windows 10.0 , 64 bit Build 17134 (10.0.17134.1)
CPU:total 4 (initial active 4) (2 cores per cpu, 2 threads per core) family 6 model 69 stepping 1, cmov, cx8, fxsr, mmx, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, avx, avx2, aes, clmul, erms, lzcnt, ht, tsc, tscinvbit, bmi1, bmi2
Memory: 4k page, physical 4100120k(220420k free), swap 10781468k(524k free)
vm_info: OpenJDK 64-Bit Server VM (25.152-b02) for windows-amd64 JRE (1.8.0_152-release-1024-b02), built by "builder" with MS VC++ 10.0 (VS2010)
time: Mon May 28 22:10:18 2018
elapsed time: 98 seconds (0d 0h 1m 38s)
#
# There is insufficient memory for the Java Runtime Environment to continue.
# Native memory allocation (malloc) failed to allocate 908016 bytes for Chunk::new
# Possible reasons:
# The system is out of physical RAM or swap space
# In 32 bit mode, the process size limit was hit
# Possible solutions:
# Reduce memory load on the system
# Increase physical memory or swap space
# Check if swap backing store is full
# Use 64 bit Java on a 64 bit OS
# Decrease Java heap size (-Xmx/-Xms)
# Decrease number of Java threads
# Decrease Java thread stack sizes (-Xss)
# Set larger code cache with -XX:ReservedCodeCacheSize=
# This output file may be truncated or incomplete.
#
# Out of Memory Error (allocation.cpp:390), pid=7448, tid=0x0000000000000810
#
# JRE version: OpenJDK Runtime Environment (8.0_152-b02) (build 1.8.0_152-release-1024-b02)
# Java VM: OpenJDK 64-Bit Server VM (25.152-b02 mixed mode windows-amd64 compressed oops)
# Failed to write core dump. Minidumps are not enabled by default on client versions of Windows
#
--------------- T H R E A D ---------------
Current thread (0x0000000015ebc800): JavaThread "C2 CompilerThread0" daemon [_thread_in_native, id=2064, stack(0x0000000017850000,0x0000000017950000)]
Stack: [0x0000000017850000,0x0000000017950000]
[error occurred during error reporting (printing stack bounds), id 0xc0000005]
Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
Current CompileTask:
C2: 131500 11628 4 com.android.tools.r8.dex.ApplicationWriter$SortAnnotations::add (6 bytes)
--------------- P R O C E S S ---------------
Java Threads: ( => current thread )
0x00000000194bb000 JavaThread "ForkJoinPool.commonPool-worker-1" daemon [_thread_in_native, id=6420, stack(0x00000000274d0000,0x00000000275d0000)]
0x00000000194be000 JavaThread "ForkJoinPool-3-worker-0" daemon [_thread_blocked, id=12208, stack(0x00000000273d0000,0x00000000274d0000)]
0x00000000194bf800 JavaThread "ForkJoinPool-3-worker-1" daemon [_thread_blocked, id=5392, stack(0x00000000272d0000,0x00000000273d0000)]
0x00000000192b1000 JavaThread "ForkJoinPool-2-worker-0" daemon [_thread_blocked, id=13524, stack(0x00000000271d0000,0x00000000272d0000)]
0x00000000192b0000 JavaThread "ForkJoinPool-2-worker-1" daemon [_thread_blocked, id=11868, stack(0x00000000270d0000,0x00000000271d0000)]
0x00000000192ac800 JavaThread "ForkJoinPool-1-worker-0" daemon [_thread_blocked, id=8380, stack(0x0000000026fd0000,0x00000000270d0000)]
0x00000000192af800 JavaThread "ForkJoinPool-1-worker-1" daemon [_thread_in_native, id=13616, stack(0x0000000026ed0000,0x0000000026fd0000)]
0x00000000192ab000 JavaThread "ForkJoinPool.commonPool-worker-0" daemon [_thread_blocked, id=10320, stack(0x0000000026dd0000,0x0000000026ed0000)]
0x00000000192ab800 JavaThread "ForkJoinPool.commonPool-worker-3" daemon [_thread_blocked, id=216, stack(0x0000000026cd0000,0x0000000026dd0000)]
0x00000000192ae000 JavaThread "ForkJoinPool.commonPool-worker-2" daemon [_thread_blocked, id=9396, stack(0x0000000026bd0000,0x0000000026cd0000)]
0x00000000192ad000 JavaThread "Task worker for ':' Thread 3" [_thread_blocked, id=3292, stack(0x0000000025dd0000,0x0000000025ed0000)]
0x00000000192aa000 JavaThread "Task worker for ':' Thread 2" [_thread_blocked, id=1600, stack(0x0000000025cd0000,0x0000000025dd0000)]
0x000000001c2b8000 JavaThread "Task worker for ':'" [_thread_blocked, id=3952, stack(0x0000000025bd0000,0x0000000025cd0000)]
0x000000001c2b9800 JavaThread "Cache worker for Build Output Cleanup Cache (C:\Users\hyunh\Desktop\Awsome_Android_Global_Calender\.gradle\buildOutputCleanup)" [_thread_blocked, id=2796, stack(0x0000000025ad0000,0x0000000025bd0000)]
0x000000001ce68800 JavaThread "Cache worker for task history cache (C:\Users\hyunh\Desktop\Awsome_Android_Global_Calender\.gradle\4.4.1\taskHistory)" [_thread_blocked, id=104, stack(0x00000000259d0000,0x0000000025ad0000)]
0x000000001ce67000 JavaThread "Cache worker for file content cache (C:\Users\hyunh\Desktop\Awsome_Android_Global_Calender\.gradle\4.4.1\fileContent)" [_thread_blocked, id=1272, stack(0x00000000258d0000,0x00000000259d0000)]
0x000000001ce5f800 JavaThread "build operations Thread 4" [_thread_blocked, id=12900, stack(0x00000000257d0000,0x00000000258d0000)]
0x000000001ce66800 JavaThread "build operations Thread 3" [_thread_blocked, id=14008, stack(0x00000000256d0000,0x00000000257d0000)]
0x000000001ce65000 JavaThread "build operations Thread 2" [_thread_blocked, id=7532, stack(0x00000000255d0000,0x00000000256d0000)]
0x000000001ce65800 JavaThread "build operations" [_thread_blocked, id=3604, stack(0x00000000254d0000,0x00000000255d0000)]
0x000000001ce5d800 JavaThread "Cache worker for Artifact transforms cache (C:\Users\hyunh\.gradle\caches\transforms-1)" [_thread_blocked, id=1188, stack(0x00000000253d0000,0x00000000254d0000)]
0x000000001ce5c800 JavaThread "Cache worker for file hash cache (C:\Users\hyunh\Desktop\Awsome_Android_Global_Calender\.gradle\4.4.1\fileHashes)" [_thread_blocked, id=8488, stack(0x00000000252d0000,0x00000000253d0000)]
0x000000001ce5f000 JavaThread "Stdin handler" [_thread_blocked, id=11140, stack(0x00000000251d0000,0x00000000252d0000)]
0x000000001ce60800 JavaThread "Asynchronous log dispatcher for DefaultDaemonConnection: socket connection from /127.0.0.1:57834 to /127.0.0.1:57894" [_thread_blocked, id=2716, stack(0x00000000250d0000,0x00000000251d0000)]
0x000000001ce63800 JavaThread "Cancel handler" [_thread_blocked, id=8440, stack(0x0000000024fd0000,0x00000000250d0000)]
0x000000001ce5c000 JavaThread "Handler for socket connection from /127.0.0.1:57834 to /127.0.0.1:57894" [_thread_in_native, id=2928, stack(0x0000000024ed0000,0x0000000024fd0000)]
0x000000001ce61000 JavaThread "Memory manager" [_thread_blocked, id=13564, stack(0x0000000021720000,0x0000000021820000)]
0x0000000019259000 JavaThread "File lock request listener" [_thread_in_native, id=6720, stack(0x000000001a500000,0x000000001a600000)]
0x0000000017fb1000 JavaThread "Cache worker for file hash cache (C:\Users\hyunh\.gradle\caches\4.4.1\fileHashes)" [_thread_blocked, id=10524, stack(0x000000001a400000,0x000000001a500000)]
0x0000000018297000 JavaThread "Daemon worker" [_thread_blocked, id=9664, stack(0x0000000019f00000,0x000000001a000000)]
0x00000000174a0000 JavaThread "Daemon" [_thread_blocked, id=7688, stack(0x0000000019a00000,0x0000000019b00000)]
0x00000000180a0800 JavaThread "Daemon periodic checks" [_thread_blocked, id=11764, stack(0x0000000019900000,0x0000000019a00000)]
0x000000001809b800 JavaThread "Incoming local TCP Connector on port 57834" [_thread_in_native, id=14000, stack(0x0000000019720000,0x0000000019820000)]
0x00000000172ca800 JavaThread "Service Thread" daemon [_thread_blocked, id=2484, stack(0x0000000017b50000,0x0000000017c50000)]
0x00000000172ab000 JavaThread "C1 CompilerThread2" daemon [_thread_in_vm, id=12364, stack(0x0000000017a50000,0x0000000017b50000)]
0x000000000378e000 JavaThread "C2 CompilerThread1" daemon [_thread_in_native, id=5404, stack(0x0000000017950000,0x0000000017a50000)]
=>0x0000000015ebc800 JavaThread "C2 CompilerThread0" daemon [_thread_in_native, id=2064, stack(0x0000000017850000,0x0000000017950000)]
0x0000000015e77800 JavaThread "Attach Listener" daemon [_thread_blocked, id=13528, stack(0x0000000017750000,0x0000000017850000)]
0x0000000017258800 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=7736, stack(0x0000000017650000,0x0000000017750000)]
0x0000000003786800 JavaThread "Finalizer" daemon [_thread_blocked, id=11668, stack(0x00000000170c0000,0x00000000171c0000)]
0x0000000003781000 JavaThread "Reference Handler" daemon [_thread_blocked, id=11640, stack(0x0000000016fc0000,0x00000000170c0000)]
0x00000000032ee000 JavaThread "main" [_thread_blocked, id=9024, stack(0x0000000003160000,0x0000000003260000)]
Other Threads:
0x0000000015e25800 VMThread [stack: 0x0000000016ec0000,0x0000000016fc0000] [id=1280]
0x00000000172cb800 WatcherThread [stack: 0x0000000017c50000,0x0000000017d50000] [id=9892]
VM state:not at safepoint (normal execution)
VM Mutex/Monitor currently owned by a thread: ([mutex/lock_event])
[0x00000000032ec2b0] CodeCache_lock - owner thread: 0x00000000172ab000
[0x00000000036903d0] Compile_lock - owner thread: 0x00000000172ab000
[0x00000000036909d0] MethodCompileQueue_lock - owner thread: 0x00000000172ab000
Heap:
PSYoungGen total 317952K, used 50452K [0x00000000eab00000, 0x0000000100000000, 0x0000000100000000)
eden space 286720K, 11% used [0x00000000eab00000,0x00000000ecb09508,0x00000000fc300000)
from space 31232K, 56% used [0x00000000fe180000,0x00000000ff2bbca0,0x0000000100000000)
to space 31232K, 0% used [0x00000000fc300000,0x00000000fc300000,0x00000000fe180000)
ParOldGen total 78336K, used 60298K [0x00000000c0000000, 0x00000000c4c80000, 0x00000000eab00000)
object space 78336K, 76% used [0x00000000c0000000,0x00000000c3ae2900,0x00000000c4c80000)
Metaspace used 76921K, capacity 80093K, committed 80384K, reserved 1118208K
class space used 10190K, capacity 10892K, committed 11008K, reserved 1048576K
Card table byte_map: [0x0000000012b50000,0x0000000012d60000] byte_map_base: 0x0000000012550000
Marking Bits: (ParMarkBitMap*) 0x0000000071e14970
Begin Bits: [0x00000000132c0000, 0x00000000142c0000)
End Bits: [0x00000000142c0000, 0x00000000152c0000)
Polling page: 0x0000000000ff0000
CodeCache: size=245760Kb used=32908Kb max_used=33084Kb free=212851Kb
bounds [0x0000000003790000, 0x0000000005810000, 0x0000000012790000]
total_blobs=10708 nmethods=9894 adapters=725
compilation: enabled
Compilation events (10 events):
Event: 131.368 Thread 0x00000000172ab000 11749 2 com.android.tools.r8.graph.DexMethod::compareTo (9 bytes)
Event: 131.368 Thread 0x00000000172ab000 nmethod 11749 0x0000000003a6c210 code [0x0000000003a6c380, 0x0000000003a6c528]
Event: 131.368 Thread 0x00000000172ab000 11747 2 com.android.tools.r8.graph.DexType::compareTo (9 bytes)
Event: 131.369 Thread 0x00000000172ab000 nmethod 11747 0x0000000003a6bdd0 code [0x0000000003a6bf40, 0x0000000003a6c0e8]
Event: 131.369 Thread 0x00000000172ab000 11746 2 com.android.tools.r8.it.unimi.dsi.fastutil.objects.Reference2IntLinkedOpenHashMap::put (34 bytes)
Event: 131.369 Thread 0x00000000172ab000 nmethod 11746 0x0000000003a6b950 code [0x0000000003a6bac0, 0x0000000003a6bca8]
Event: 131.370 Thread 0x00000000172ab000 11751 2 com.android.tools.r8.graph.DexField::compareTo (9 bytes)
Event: 131.371 Thread 0x00000000172ab000 nmethod 11751 0x0000000003a6b510 code [0x0000000003a6b680, 0x0000000003a6b828]
Event: 131.371 Thread 0x00000000172ab000 11752 2 com.android.tools.r8.graph.DexField::compareTo (9 bytes)
Event: 131.371 Thread 0x00000000172ab000 nmethod 11752 0x0000000003a6b150 code [0x0000000003a6b2c0, 0x0000000003a6b428]
GC Heap History (10 events):
Event: 22.993 GC heap before
{Heap before GC invocations=15 (full 2):
PSYoungGen total 196608K, used 20772K [0x00000000eab00000, 0x00000000f7d80000, 0x0000000100000000)
eden space 181760K, 3% used [0x00000000eab00000,0x00000000eb1a0b18,0x00000000f5c80000)
from space 14848K, 94% used [0x00000000f6d80000,0x00000000f7b286c0,0x00000000f7c00000)
to space 16896K, 0% used [0x00000000f5c80000,0x00000000f5c80000,0x00000000f6d00000)
ParOldGen total 54784K, used 30156K [0x00000000c0000000, 0x00000000c3580000, 0x00000000eab00000)
object space 54784K, 55% used [0x00000000c0000000,0x00000000c1d73290,0x00000000c3580000)
Metaspace used 57227K, capacity 58974K, committed 59028K, reserved 1099776K
class space used 7734K, capacity 8177K, committed 8192K, reserved 1048576K
Event: 23.013 GC heap after
Heap after GC invocations=15 (full 2):
PSYoungGen total 198656K, used 416K [0x00000000eab00000, 0x00000000fd500000, 0x0000000100000000)
eden space 181760K, 0% used [0x00000000eab00000,0x00000000eab00000,0x00000000f5c80000)
from space 16896K, 2% used [0x00000000f5c80000,0x00000000f5ce8000,0x00000000f6d00000)
to space 16896K, 0% used [0x00000000fc480000,0x00000000fc480000,0x00000000fd500000)
ParOldGen total 54784K, used 37186K [0x00000000c0000000, 0x00000000c3580000, 0x00000000eab00000)
object space 54784K, 67% used [0x00000000c0000000,0x00000000c2450a10,0x00000000c3580000)
Metaspace used 57227K, capacity 58974K, committed 59028K, reserved 1099776K
class space used 7734K, capacity 8177K, committed 8192K, reserved 1048576K
}
Event: 23.013 GC heap before
{Heap before GC invocations=16 (full 3):
PSYoungGen total 198656K, used 416K [0x00000000eab00000, 0x00000000fd500000, 0x0000000100000000)
eden space 181760K, 0% used [0x00000000eab00000,0x00000000eab00000,0x00000000f5c80000)
from space 16896K, 2% used [0x00000000f5c80000,0x00000000f5ce8000,0x00000000f6d00000)
to space 16896K, 0% used [0x00000000fc480000,0x00000000fc480000,0x00000000fd500000)
ParOldGen total 54784K, used 37186K [0x00000000c0000000, 0x00000000c3580000, 0x00000000eab00000)
object space 54784K, 67% used [0x00000000c0000000,0x00000000c2450a10,0x00000000c3580000)
Metaspace used 57227K, capacity 58974K, committed 59028K, reserved 1099776K
class space used 7734K, capacity 8177K, committed 8192K, reserved 1048576K
Event: 23.317 GC heap after
Heap after GC invocations=16 (full 3):
PSYoungGen total 198656K, used 0K [0x00000000eab00000, 0x00000000fd500000, 0x0000000100000000)
eden space 181760K, 0% used [0x00000000eab00000,0x00000000eab00000,0x00000000f5c80000)
from space 16896K, 0% used [0x00000000f5c80000,0x00000000f5c80000,0x00000000f6d00000)
to space 16896K, 0% used [0x00000000fc480000,0x00000000fc480000,0x00000000fd500000)
ParOldGen total 78336K, used 32286K [0x00000000c0000000, 0x00000000c4c80000, 0x00000000eab00000)
object space 78336K, 41% used [0x00000000c0000000,0x00000000c1f87868,0x00000000c4c80000)
Metaspace used 57227K, capacity 58974K, committed 59028K, reserved 1099776K
class space used 7734K, capacity 8177K, committed 8192K, reserved 1048576K
}
Event: 27.106 GC heap before
{Heap before GC invocations=17 (full 3):
PSYoungGen total 198656K, used 181760K [0x00000000eab00000, 0x00000000fd500000, 0x0000000100000000)
eden space 181760K, 100% used [0x00000000eab00000,0x00000000f5c80000,0x00000000f5c80000)
from space 16896K, 0% used [0x00000000f5c80000,0x00000000f5c80000,0x00000000f6d00000)
to space 16896K, 0% used [0x00000000fc480000,0x00000000fc480000,0x00000000fd500000)
ParOldGen total 78336K, used 32286K [0x00000000c0000000, 0x00000000c4c80000, 0x00000000eab00000)
object space 78336K, 41% used [0x00000000c0000000,0x00000000c1f87868,0x00000000c4c80000)
Metaspace used 61411K, capacity 63312K, committed 63360K, reserved 1103872K
class space used 8330K, capacity 8824K, committed 8832K, reserved 1048576K
Event: 27.149 GC heap after
Heap after GC invocations=17 (full 3):
PSYoungGen total 271872K, used 16886K [0x00000000eab00000, 0x00000000fd500000, 0x0000000100000000)
eden space 254976K, 0% used [0x00000000eab00000,0x00000000eab00000,0x00000000fa400000)
from space 16896K, 99% used [0x00000000fc480000,0x00000000fd4fdb70,0x00000000fd500000)
to space 20992K, 0% used [0x00000000fac00000,0x00000000fac00000,0x00000000fc080000)
ParOldGen total 78336K, used 35020K [0x00000000c0000000, 0x00000000c4c80000, 0x00000000eab00000)
object space 78336K, 44% used [0x00000000c0000000,0x00000000c22332f0,0x00000000c4c80000)
Metaspace used 61411K, capacity 63312K, committed 63360K, reserved 1103872K
class space used 8330K, capacity 8824K, committed 8832K, reserved 1048576K
}
Event: 52.993 GC heap before
{Heap before GC invocations=18 (full 3):
PSYoungGen total 271872K, used 271862K [0x00000000eab00000, 0x00000000fd500000, 0x0000000100000000)
eden space 254976K, 100% used [0x00000000eab00000,0x00000000fa400000,0x00000000fa400000)
from space 16896K, 99% used [0x00000000fc480000,0x00000000fd4fdb70,0x00000000fd500000)
to space 20992K, 0% used [0x00000000fac00000,0x00000000fac00000,0x00000000fc080000)
ParOldGen total 78336K, used 35020K [0x00000000c0000000, 0x00000000c4c80000, 0x00000000eab00000)
object space 78336K, 44% used [0x00000000c0000000,0x00000000c22332f0,0x00000000c4c80000)
Metaspace used 70895K, capacity 73523K, committed 73856K, reserved 1114112K
class space used 9388K, capacity 10013K, committed 10112K, reserved 1048576K
Event: 53.854 GC heap after
Heap after GC invocations=18 (full 3):
PSYoungGen total 284160K, used 20987K [0x00000000eab00000, 0x0000000100000000, 0x0000000100000000)
eden space 263168K, 0% used [0x00000000eab00000,0x00000000eab00000,0x00000000fac00000)
from space 20992K, 99% used [0x00000000fac00000,0x00000000fc07ec30,0x00000000fc080000)
to space 31232K, 0% used [0x00000000fe180000,0x00000000fe180000,0x0000000100000000)
ParOldGen total 78336K, used 53353K [0x00000000c0000000, 0x00000000c4c80000, 0x00000000eab00000)
object space 78336K, 68% used [0x00000000c0000000,0x00000000c341a5d8,0x00000000c4c80000)
Metaspace used 70895K, capacity 73523K, committed 73856K, reserved 1114112K
class space used 9388K, capacity 10013K, committed 10112K, reserved 1048576K
}
Event: 129.817 GC heap before
{Heap before GC invocations=19 (full 3):
PSYoungGen total 284160K, used 284155K [0x00000000eab00000, 0x0000000100000000, 0x0000000100000000)
eden space 263168K, 100% used [0x00000000eab00000,0x00000000fac00000,0x00000000fac00000)
from space 20992K, 99% used [0x00000000fac00000,0x00000000fc07ec30,0x00000000fc080000)
to space 31232K, 0% used [0x00000000fe180000,0x00000000fe180000,0x0000000100000000)
ParOldGen total 78336K, used 53353K [0x00000000c0000000, 0x00000000c4c80000, 0x00000000eab00000)
object space 78336K, 68% used [0x00000000c0000000,0x00000000c341a5d8,0x00000000c4c80000)
Metaspace used 74356K, capacity 77307K, committed 77440K, reserved 1116160K
class space used 9816K, capacity 10503K, committed 10624K, reserved 1048576K
Event: 130.023 GC heap after
Heap after GC invocations=19 (full 3):
PSYoungGen total 317952K, used 17647K [0x00000000eab00000, 0x0000000100000000, 0x0000000100000000)
eden space 286720K, 0% used [0x00000000eab00000,0x00000000eab00000,0x00000000fc300000)
from space 31232K, 56% used [0x00000000fe180000,0x00000000ff2bbca0,0x0000000100000000)
to space 31232K, 0% used [0x00000000fc300000,0x00000000fc300000,0x00000000fe180000)
ParOldGen total 78336K, used 60298K [0x00000000c0000000, 0x00000000c4c80000, 0x00000000eab00000)
object space 78336K, 76% used [0x00000000c0000000,0x00000000c3ae2900,0x00000000c4c80000)
Metaspace used 74356K, capacity 77307K, committed 77440K, reserved 1116160K
class space used 9816K, capacity 10503K, committed 10624K, reserved 1048576K
}
Deoptimization events (10 events):
Event: 130.639 Thread 0x00000000192b1000 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00000000048c6f64 method=com.android.tools.r8.graph.DexString.computeEquals(Ljava/lang/Object;)Z @ 20
Event: 130.649 Thread 0x00000000194bf800 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00000000048c9070 method=com.android.tools.r8.graph.CachedHashValueDexItem.equals(Ljava/lang/Object;)Z @ 10
Event: 130.649 Thread 0x00000000194bf800 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00000000048c9070 method=com.android.tools.r8.graph.CachedHashValueDexItem.equals(Ljava/lang/Object;)Z @ 10
Event: 130.649 Thread 0x00000000192b0000 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00000000048c9420 method=java.util.Arrays.equals([B[B)Z @ 41
Event: 130.863 Thread 0x00000000194bf800 Uncommon trap: reason=unloaded action=reinterpret pc=0x00000000057b35b0 method=com.android.tools.r8.code.BaseInstructionFactory.create(IILcom/android/tools/r8/code/BytecodeStream;Lcom/android/tools/r8/graph/OffsetToObjectMapping;)Lcom/android/tools/r8/cod
Event: 131.085 Thread 0x00000000192ab800 Uncommon trap: reason=unstable_if action=reinterpret pc=0x0000000003d4aa04 method=java.lang.StringBuffer.toString()Ljava/lang/String; @ 4
Event: 131.089 Thread 0x00000000192ab000 Uncommon trap: reason=unstable_if action=reinterpret pc=0x000000000577f158 method=com.android.tools.r8.graph.DexString.slowCompareTo(Lcom/android/tools/r8/graph/DexString;)I @ 54
Event: 131.152 Thread 0x00000000192ab000 Uncommon trap: reason=array_check action=maybe_recompile pc=0x00000000055c99d0 method=java.util.TimSort.binarySort([Ljava/lang/Object;IIILjava/util/Comparator;)V @ 193
Event: 131.159 Thread 0x00000000192ab000 Uncommon trap: reason=array_check action=maybe_recompile pc=0x000000000558379c method=java.util.TimSort.binarySort([Ljava/lang/Object;IIILjava/util/Comparator;)V @ 183
Event: 131.229 Thread 0x00000000192ae000 Uncommon trap: reason=predicate action=maybe_recompile pc=0x0000000004d2d4a8 method=com.android.tools.r8.graph.DexItem.consumeArray([Lcom/android/tools/r8/graph/DexItem;Ljava/util/function/Consumer;)V @ 19
Classes redefined (0 events):
No events
Internal exceptions (10 events):
Event: 108.200 Thread 0x0000000018297000 Exception <a 'java/lang/NoSuchMethodError': <clinit>> (0x00000000ec857c40) thrown at [D:\src\AOSP-openjdk-cygwin\jdk8u\hotspot\src\share\vm\prims\jni.cpp, line 1613]
Event: 108.202 Thread 0x0000000018297000 Exception <a 'java/lang/NoSuchMethodError': <clinit>> (0x00000000ec85b898) thrown at [D:\src\AOSP-openjdk-cygwin\jdk8u\hotspot\src\share\vm\prims\jni.cpp, line 1613]
Event: 108.202 Thread 0x0000000018297000 Exception <a 'java/lang/NoSuchMethodError': <clinit>> (0x00000000ec85d3a0) thrown at [D:\src\AOSP-openjdk-cygwin\jdk8u\hotspot\src\share\vm\prims\jni.cpp, line 1613]
Event: 110.257 Thread 0x0000000018297000 Exception <a 'sun/nio/fs/WindowsException'> (0x00000000ede60238) thrown at [D:\src\AOSP-openjdk-cygwin\jdk8u\hotspot\src\share\vm\prims\jni.cpp, line 709]
Event: 125.871 Thread 0x00000000192aa000 Exception <a 'java/lang/NoSuchMethodError': <clinit>> (0x00000000f6b2c7e8) thrown at [D:\src\AOSP-openjdk-cygwin\jdk8u\hotspot\src\share\vm\prims\jni.cpp, line 1613]
Event: 129.118 Thread 0x00000000192aa000 Implicit null exception at 0x00000000054203d1 to 0x0000000005422521
Event: 129.470 Thread 0x00000000192ab800 Exception <a 'sun/nio/fs/WindowsException'> (0x00000000f9f98ec8) thrown at [D:\src\AOSP-openjdk-cygwin\jdk8u\hotspot\src\share\vm\prims\jni.cpp, line 709]
Event: 129.602 Thread 0x00000000192ab000 Exception <a 'sun/nio/fs/WindowsException'> (0x00000000fa2c3ad0) thrown at [D:\src\AOSP-openjdk-cygwin\jdk8u\hotspot\src\share\vm\prims\jni.cpp, line 709]
Event: 129.685 Thread 0x00000000192ae000 Exception <a 'sun/nio/fs/WindowsException'> (0x00000000fa50e960) thrown at [D:\src\AOSP-openjdk-cygwin\jdk8u\hotspot\src\share\vm\prims\jni.cpp, line 709]
Event: 130.538 Thread 0x00000000194be000 Implicit null exception at 0x00000000048571ef to 0x00000000048572e1
Events (10 events):
Event: 131.366 loading class com/android/tools/r8/graph/ObjectToOffsetMapping
Event: 131.366 loading class com/android/tools/r8/graph/ObjectToOffsetMapping done
Event: 131.366 loading class com/android/tools/r8/graph/DexMethodHandle
Event: 131.366 loading class com/android/tools/r8/graph/DexMethodHandle done
Event: 131.366 loading class com/android/tools/r8/graph/ObjectToOffsetMapping
Event: 131.366 loading class com/android/tools/r8/graph/ObjectToOffsetMapping done
Event: 131.369 loading class com/android/tools/r8/graph/ObjectToOffsetMapping
Event: 131.369 loading class com/android/tools/r8/graph/ObjectToOffsetMapping done
Event: 131.369 loading class com/android/tools/r8/dex/ApplicationWriter
Event: 131.369 loading class com/android/tools/r8/dex/ApplicationWriter done
Dynamic libraries:
0x00007ff61ab70000 - 0x00007ff61aba1000 C:\Program Files\Android\Android Studio\jre\bin\java.exe
0x00007ffd274f0000 - 0x00007ffd276d1000 C:\WINDOWS\SYSTEM32\ntdll.dll
0x00007ffd27400000 - 0x00007ffd274b2000 C:\WINDOWS\System32\KERNEL32.DLL
0x00007ffd24310000 - 0x00007ffd24583000 C:\WINDOWS\System32\KERNELBASE.dll
0x00007ffd26b20000 - 0x00007ffd26bc1000 C:\WINDOWS\System32\ADVAPI32.dll
0x00007ffd263f0000 - 0x00007ffd2648e000 C:\WINDOWS\System32\msvcrt.dll
0x00007ffd27000000 - 0x00007ffd2705b000 C:\WINDOWS\System32\sechost.dll
0x00007ffd26ed0000 - 0x00007ffd26ff4000 C:\WINDOWS\System32\RPCRT4.dll
0x00007ffd26bd0000 - 0x00007ffd26d60000 C:\WINDOWS\System32\USER32.dll
0x00007ffd24760000 - 0x00007ffd24780000 C:\WINDOWS\System32\win32u.dll
0x00007ffd26ea0000 - 0x00007ffd26ec8000 C:\WINDOWS\System32\GDI32.dll
0x00007ffd24780000 - 0x00007ffd24912000 C:\WINDOWS\System32\gdi32full.dll
0x00007ffd24610000 - 0x00007ffd246af000 C:\WINDOWS\System32\msvcp_win.dll
0x00007ffd238c0000 - 0x00007ffd239ba000 C:\WINDOWS\System32\ucrtbase.dll
0x00007ffd1a010000 - 0x00007ffd1a279000 C:\WINDOWS\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.17134.48_none_b4b2216a3cb4dd3e\COMCTL32.dll
0x00007ffd270d0000 - 0x00007ffd273f3000 C:\WINDOWS\System32\combase.dll
0x00007ffd24590000 - 0x00007ffd2460a000 C:\WINDOWS\System32\bcryptPrimitives.dll
0x00007ffd26a40000 - 0x00007ffd26a6d000 C:\WINDOWS\System32\IMM32.DLL
0x000000006f2c0000 - 0x000000006f392000 C:\Program Files\Android\Android Studio\jre\jre\bin\msvcr100.dll
0x0000000071650000 - 0x0000000071e8f000 C:\Program Files\Android\Android Studio\jre\jre\bin\server\jvm.dll
0x00007ffd27060000 - 0x00007ffd27068000 C:\WINDOWS\System32\PSAPI.DLL
0x00007ffd1bba0000 - 0x00007ffd1bbaa000 C:\WINDOWS\SYSTEM32\VERSION.dll
0x00007ffd1ec20000 - 0x00007ffd1ec29000 C:\WINDOWS\SYSTEM32\WSOCK32.dll
0x00007ffd21540000 - 0x00007ffd21563000 C:\WINDOWS\SYSTEM32\WINMM.dll
0x00007ffd269d0000 - 0x00007ffd26a3c000 C:\WINDOWS\System32\WS2_32.dll
0x00007ffd21510000 - 0x00007ffd2153a000 C:\WINDOWS\SYSTEM32\WINMMBASE.dll
0x00007ffd242c0000 - 0x00007ffd24309000 C:\WINDOWS\System32\cfgmgr32.dll
0x00007ffd1eb90000 - 0x00007ffd1eb9f000 C:\Program Files\Android\Android Studio\jre\jre\bin\verify.dll
0x00007ffd1a4c0000 - 0x00007ffd1a4e9000 C:\Program Files\Android\Android Studio\jre\jre\bin\java.dll
0x00007ffd1e0e0000 - 0x00007ffd1e0f6000 C:\Program Files\Android\Android Studio\jre\jre\bin\zip.dll
0x00007ffd24d90000 - 0x00007ffd261d0000 C:\WINDOWS\System32\SHELL32.dll
0x00007ffd26a70000 - 0x00007ffd26b19000 C:\WINDOWS\System32\shcore.dll
0x00007ffd23bb0000 - 0x00007ffd242bd000 C:\WINDOWS\System32\windows.storage.dll
0x00007ffd27070000 - 0x00007ffd270c1000 C:\WINDOWS\System32\shlwapi.dll
0x00007ffd23880000 - 0x00007ffd23891000 C:\WINDOWS\System32\kernel.appcore.dll
0x00007ffd23800000 - 0x00007ffd2381f000 C:\WINDOWS\System32\profapi.dll
0x00007ffd23820000 - 0x00007ffd2386c000 C:\WINDOWS\System32\powrprof.dll
0x00007ffd23870000 - 0x00007ffd2387a000 C:\WINDOWS\System32\FLTLIB.DLL
0x00007ffd1dd90000 - 0x00007ffd1ddaa000 C:\Program Files\Android\Android Studio\jre\jre\bin\net.dll
0x00007ffd23020000 - 0x00007ffd23086000 C:\WINDOWS\system32\mswsock.dll
0x00007ffd1d2e0000 - 0x00007ffd1d2f1000 C:\Program Files\Android\Android Studio\jre\jre\bin\nio.dll
0x00007ffd1ebe0000 - 0x00007ffd1ebfe000 C:\Users\hyunh\.gradle\native\25\windows-amd64\native-platform.dll
0x00007ffd1eb60000 - 0x00007ffd1eb6d000 C:\Program Files\Android\Android Studio\jre\jre\bin\management.dll
0x00007ffd231d0000 - 0x00007ffd231e7000 C:\WINDOWS\SYSTEM32\CRYPTSP.dll
0x00007ffd22c00000 - 0x00007ffd22c33000 C:\WINDOWS\system32\rsaenh.dll
0x00007ffd23300000 - 0x00007ffd23325000 C:\WINDOWS\SYSTEM32\bcrypt.dll
0x00007ffd23700000 - 0x00007ffd23728000 C:\WINDOWS\SYSTEM32\USERENV.dll
0x00007ffd231f0000 - 0x00007ffd231fb000 C:\WINDOWS\SYSTEM32\CRYPTBASE.dll
0x00007ffd22da0000 - 0x00007ffd22dd8000 C:\WINDOWS\SYSTEM32\IPHLPAPI.DLL
0x00007ffd26d60000 - 0x00007ffd26d68000 C:\WINDOWS\System32\NSI.dll
0x00007ffd1b8c0000 - 0x00007ffd1b8d6000 C:\WINDOWS\SYSTEM32\dhcpcsvc6.DLL
0x00007ffd1bc20000 - 0x00007ffd1bc3a000 C:\WINDOWS\SYSTEM32\dhcpcsvc.DLL
VM Arguments:
jvm_args: -XX:+HeapDumpOnOutOfMemoryError -Xmx1024m -Dfile.encoding=x-windows-949 -Duser.country=KR -Duser.language=ko -Duser.variant
java_command: org.gradle.launcher.daemon.bootstrap.GradleDaemon 4.4.1
java_class_path (initial): C:\Users\hyunh\.gradle\wrapper\dists\gradle-4.4.1-all\2kpyt0ea6hyxavvt21uml23gd\gradle-4.4.1\lib\gradle-launcher-4.4.1.jar
Launcher Type: SUN_STANDARD
Environment Variables:
PATH=C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\Program Files\PuTTY\;C:\Program Files (x86)\MySQL\MySQL Utilities 1.6\;C:\Program Files\nodejs\;C:\WINDOWS\System32\OpenSSH\;C:\Users\hyunh\Anaconda3;C:\Users\hyunh\Anaconda3\Library\mingw-w64\bin;C:\Users\hyunh\Anaconda3\Library\usr\bin;C:\Users\hyunh\Anaconda3\Library\bin;C:\Users\hyunh\Anaconda3\Scripts;C:\Users\hyunh\AppData\Local\Microsoft\WindowsApps;C:\Program Files\Microsoft VS Code\bin;C:\Users\hyunh\AppData\Local\atom\bin;C:\Users\hyunh\AppData\Roaming\npm;%USERPROFILE%\AppData\Local\Microsoft\WindowsApps;
USERNAME=hyunh
OS=Windows_NT
PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 69 Stepping 1, GenuineIntel
--------------- S Y S T E M ---------------
OS: Windows 10.0 , 64 bit Build 17134 (10.0.17134.1)
CPU:total 4 (initial active 4) (2 cores per cpu, 2 threads per core) family 6 model 69 stepping 1, cmov, cx8, fxsr, mmx, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, avx, avx2, aes, clmul, erms, lzcnt, ht, tsc, tscinvbit, bmi1, bmi2
Memory: 4k page, physical 4100120k(337232k free), swap 10781468k(192k free)
vm_info: OpenJDK 64-Bit Server VM (25.152-b02) for windows-amd64 JRE (1.8.0_152-release-1024-b02), built by "builder" with MS VC++ 10.0 (VS2010)
time: Mon May 28 22:31:49 2018
elapsed time: 131 seconds (0d 0h 2m 11s)
Source diff could not be displayed: it is too large. Options to address this: view the blob.
Source diff could not be displayed: it is too large. Options to address this: view the blob.
Source diff could not be displayed: it is too large. Options to address this: view the blob.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment