###前提・実現したいこと
androidstudioでアプリを作っているのですがエラーが出ています
おそらくコード自体ではなくシステム的な問題です
解決方法わかる人いましたら教えていただけるとありがたいです。
androidstudio使用歴は3か月です。
よろしくお願いします
###発生している問題・エラーメッセージ
気づいていないだけかもしれませんか他にもある気がします
Messages Gradle Sync の内容 Gradle 'プロジェクト名' project refresh failed >Error:Connection timed out: connect
###Gradleファイル(Gradleファイルを追記させていただきます)
build.gradle(Project:FirstOpenandFragment)
Gradle
1// Top-level build file where you can add configuration options common to all sub-projects/modules. 2 3buildscript { 4 repositories { 5 jcenter() 6 } 7 dependencies { 8 classpath 'com.android.tools.build:gradle:2.1.3' 9 10 // NOTE: Do not place your application dependencies here; they belong 11 // in the individual module build.gradle files 12 } 13} 14 15allprojects { 16 repositories { 17 jcenter() 18 } 19} 20 21task clean(type: Delete) { 22 delete rootProject.buildDir 23} 24
build.gradle(Module:app)
Gradle
1apply plugin: 'com.android.application' 2 3android { 4 compileSdkVersion 24 5 buildToolsVersion "24.0.2" 6 7 defaultConfig { 8 applicationId "com.example.syoribuuser.firstopenandfragment" 9 minSdkVersion 15 10 targetSdkVersion 24 11 versionCode 1 12 versionName "1.0" 13 } 14 buildTypes { 15 release { 16 minifyEnabled false 17 proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' 18 } 19 } 20} 21 22dependencies { 23 compile fileTree(dir: 'libs', include: ['*.jar']) 24 testCompile 'junit:junit:4.12' 25 compile 'com.android.support:appcompat-v7:24.2.0' 26 compile 'com.android.support:support-v4:24.2.0' 27 28} 29
setting.gradle
Gradle
1include ':app' 2
###試したこと
プロキシ設定の確認とネットワーク接続の確認
>異常なし。ネットワーク接続も良好
AndroidStudio再インストール
###補足情報(言語/FW/ツール等のバージョンなど)
AndroidStudio
java
Gradle
回答2件
あなたの回答
tips
プレビュー