Giter Club home page Giter Club logo

contest-gongduck-android's Introduction

gongduck_mobile_project

공덕오거리 공모전 모바일 프로젝트

Error

ClearText

  • Android 9 (Pie) 버전부터는 http에 대한 보안 강화로 ClearText를 막아두었다. (https 위주 이용 가능)
  • HttpURLConnection 으로 json 형태로 데이터를 받아오기 때문에 clear text가 필요하다.
# AndroidManifest.xml에 아래와 같이 추가해서 clear text를 이용할 수 있도록 한다.
<manifest>
	<application
		android:usesCleartextTraffic="true">
</manifest>

DrawerLayout

import androidx.drawerlayout.widget.DrawerLayout;

build.gradle 설정 필요 (순서 중요!!)

  1. app 수준의 build.gradle에 추가 및 Sync
dependencies {
	implementation "androidx.navigation:navigation-fragment:2.1.0"
	implementation "androidx.navigation:navigation-ui:2.1.0"
}
  1. project 수준의 build.gradle에 추가 및 Sync
buildscript {
	dependencies {
		classpath "android.arch.navigation:navigation-safe-args-gradle-plugin:1.0.0-alpha09"
	}
}
  1. app 수준의 build.gradle 가장 아래에 추가 및 Sync
apply plugin: "androidx.navigation.safeargs"

contest-gongduck-android's People

Contributors

shunnyjang avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.