From 9066a3610779b6e6c967bfb39e38fc59ee163107 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E7=94=B0=E9=9B=A8?= <TianYu.hpu@gmail.com>
Date: Sat, 18 Jun 2016 13:08:37 +0800
Subject: [PATCH 1/2] =?UTF-8?q?=E5=B0=91=E5=86=99=E4=BA=86=E6=B3=A8?=
 =?UTF-8?q?=E5=86=8C=E6=96=B9=E6=B3=95?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

在不谢注册方法的时候运行程序会报错,说AndroidManifest.xml中缺少注册design_width和design_height两个属性,而实际上这两个属性已经定义过了,我猜想可能就是缺少注册文件,添上这句代码就可以了。
---
 README.md | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/README.md b/README.md
index 361ee21..12f1b30 100644
--- a/README.md
+++ b/README.md
@@ -85,8 +85,13 @@ dependencies {
 
 让你的Activity继承自`AutoLayoutActivity`.
 
+### 第三步:
 
-非常简单的两个步骤,你就可以开始愉快的编写布局了,详细可以参考sample。
+在Application子类或Activity的setContentView之前注册AutoLayout
+AutoLayoutConifg.getInstance().init(this);
+
+
+非常简单的三步,你就可以开始愉快的编写布局了,详细可以参考sample。
 
 
 

From ad16f66bea1c0e3e3718dada6d0d59cbe92232ee Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E7=94=B0=E9=9B=A8?= <TianYu.hpu@gmail.com>
Date: Sat, 18 Jun 2016 13:09:38 +0800
Subject: [PATCH 2/2] Update README.md

---
 README.md | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/README.md b/README.md
index 12f1b30..1a8fa8b 100644
--- a/README.md
+++ b/README.md
@@ -88,7 +88,8 @@ dependencies {
 ### 第三步:
 
 在Application子类或Activity的setContentView之前注册AutoLayout
-AutoLayoutConifg.getInstance().init(this);
+
+    AutoLayoutConifg.getInstance().init(this);
 
 
 非常简单的三步,你就可以开始愉快的编写布局了,详细可以参考sample。