View crashAS23.txt
Sampling process 30093 for 3 seconds with 1 millisecond of run time between samples | |
Sampling completed, processing symbols... | |
Analysis of sampling studio (pid 30093) every 1 millisecond | |
Process: studio [30093] | |
Path: /Applications/Android Studio.app/Contents/MacOS/studio | |
Load Address: 0x108408000 | |
Identifier: com.google.android.studio | |
Version: 2.3 (AI-162.4069837) | |
Code Type: X86-64 | |
Parent Process: ??? [1] |
View AndroidStudioHangs.txt
This file has been truncated, but you can view the full file.
Date/Time: 2017-09-08 09:15:10 -0500 | |
OS Version: Mac OS X 10.12.6 (Build 16G29) | |
Architecture: x86_64h | |
Report Version: 25 | |
Data Source: Stackshots | |
Command: studio | |
Path: /Applications/Android Studio 3.0 Preview.app/Contents/MacOS/studio |
View global project gradle file
// Top-level build file where you can add configuration options common to all sub-projects/modules. | |
buildscript { | |
repositories { | |
mavenCentral() | |
} | |
dependencies { | |
classpath 'com.android.tools.build:gradle:0.5.+' | |
} | |
} |
View lint-results.xml
<?xml version="1.0" encoding="UTF-8"?> | |
<issues format="4" by="lint 24.3"> | |
<issue | |
id="NewApi" | |
severity="Error" | |
message="Call requires API level 16 (current min is 14): `android.view.ViewTreeObserver#removeOnGlobalLayoutListener`" | |
category="Correctness" | |
priority="6" | |
summary="Calling new methods on older versions" |
View strip_play_services.gradle
def toCamelCase(String string) { | |
String result = "" | |
string.findAll("[^\\W]+") { String word -> | |
result += word.capitalize() | |
} | |
return result | |
} | |
afterEvaluate { project -> | |
Configuration runtimeConfiguration = project.configurations.getByName('compile') |
View strip_play_services.gradle
def toCamelCase(String string) { | |
String result = "" | |
string.findAll("[^\\W]+") { String word -> | |
result += word.capitalize() | |
} | |
return result | |
} | |
afterEvaluate { project -> | |
Configuration runtimeConfiguration = project.configurations.getByName('compile') |