Menü ve Görevler % 100 Görev Açıklamaları % 100 Notlar % 100 Terminaller % 100 Diyaloglar % 100 Altyazılar % 100 Bu yama OyunÇeviri Ekibi tarafından adına hazırlanmıştır. -Yama Update 7 (1.4.0.525) ile uyumlu hazırlanmıştır. -Ultimate Edition ile uyumludur. -Yamayı kurduktan sonra oyunu Launcher.exe’den başlatıp Veri Dosyaları’nı tıklayın, ardından FalloutNV-TR.esp’nin yanındaki kutucuğu işaretleyin. -Oyun içinden Altyazıları açmayı unutmayın. NOT: Yama bazı modlarla sorun çıkarabilir. Yamanın Türkçeleştirdiği içerikler: -Fallout New Vegas -Caravan Pack -Classic Pack -Mercenary Pack -Tribal Pack ÖNSÖZ Bu RPG oyununu Türkçeye kazandırmanın hazzını yaşıyorum. Özellikle geniş evrene, ve derin hikâyeye sahip Fallout gibi bir oyunu çevirmek, şahsım adına gurur verici bir olay. Oyunculukta üst boyut olduğuna inandığım Rol Yapma oyunları her zaman ilgimi çekmişti. Çizgisel olmayan oynanış, farklı yollardan gidebilme, değişik stratejile...
Bağlantıyı al
Facebook
X
Pinterest
E-posta
Diğer Uygulamalar
Add Google Maven repository to Android Studio Project
Bağlantıyı al
Facebook
X
Pinterest
E-posta
Diğer Uygulamalar
-
With latest Android Studio, I change the targetSdkVersion and compileSdkVersion of my old exercise to 28. And I also have to use updated com.android.support:appcompat-v7 and com.android.support.constraint:constraint-layout. After fail in rebuild, it's a number of WARNING and ERROR.
----------------------------- ERROR: Failed to resolve: com.android.support:appcompat-v7:28.0.0 Add Google Maven repository and sync project Show in Project Structure dialog Affected Modules: app ERROR: Failed to resolve: com.android.support.constraint:constraint-layout:1.1.3 Add Google Maven repository and sync project Show in Project Structure dialog Affected Modules: app WARNING: Configuration 'compile' is obsolete and has been replaced with 'implementation' and 'api'. It will be removed at the end of 2018. For more information see: http://d.android.com/r/tools/update-dependency-configurations.html Affected Modules: app WARNING: Configuration 'testCompile' is obsolete and has been replaced with 'testImplementation'. It will be removed at the end of 2018. For more information see: http://d.android.com/r/tools/update-dependency-configurations.html Affected Modules: app WARNING: Configuration 'androidTestCompile' is obsolete and has been replaced with 'androidTestImplementation'. It will be removed at the end of 2018. For more information see: http://d.android.com/r/tools/update-dependency-configurations.html Affected Modules: app -----------------------------
As suggested, I change 'compile', 'testCompile' and 'androidTestCompile' to 'implementation', 'testImplementation' and 'androidTestImplementation', in app/build.gradle.
To fix the error of Failed to resolve: com.android.support:appcompat-v7:28.0.0 and com.android.support.constraint:constraint-layout:1.1.3, I add the follow lines of Google Maven repository to build.gradle.
maven { url 'https://maven.google.com/' name 'Google' }
And rebuild the project. At least it works for me now.
So, how to know the latest version of com.android.support:appcompat-v7 and com.android.support.constraint:constraint-layout?
28.0.0 is the recentest stable release of Support Library released on September 21, 2018 and will be the last feature release under the android.support packaging.
Yorumlar
Yorum Gönder