AndroidX migration using Jetifier tool converts support libraries to RC versions
In the process of migrating to Android X, tt seems that Jetifier tool converts some of the 3rd party libraries to RC versions (gradle-4.6).
| +--- com.facebook.android:facebook-common:4.34.0
| | | +--- com.facebook.android:facebook-core:4.34.0 (*)
| | | +--- com.google.zxing:core:3.3.0
| | | +--- androidx.legacy:legacy-support-v4:1.0.0-rc01
| | | | +--- androidx.core:core:1.0.0-rc01 -> 1.0.1 (*)
| | | | +--- androidx.media:media:1.0.0-rc01
| | | | | +--- androidx.annotation:annotation:1.0.0-rc01 -> 1.0.0
| | | | | +--- androidx.core:core:1.0.0-rc01 -> 1.0.1 (*)
| | | | | --- androidx.versionedparcelable:versionedparcelable:1.0.0-rc01 -> 1.0.0 (*)
| | | | +--- androidx.legacy:legacy-support-core-utils:1.0.0-rc01 -> 1.0.0 (*)
| | | | +--- androidx.legacy:legacy-support-core-ui:1.0.0-rc01 -> 1.0.0 (*)
| | | | --- androidx.fragment:fragment:1.0.0-rc01 -> 1.0.0 (*)
| | | +--- androidx.appcompat:appcompat:1.0.0-rc01 -> 1.0.2 (*)
| | | +--- androidx.cardview:cardview:1.0.0-rc01 -> 1.0.0 (*)
| | | --- androidx.browser:browser:1.0.0-rc01
| | | +--- androidx.core:core:1.0.0-rc01 -> 1.0.1 (*)
| | | +--- androidx.annotation:annotation:1.0.0-rc01 -> 1.0.0
| | | +--- androidx.interpolator:interpolator:1.0.0-rc01 -> 1.0.0 (*)
| | | +--- androidx.collection:collection:1.0.0-rc01 -> 1.0.0 (*)
| | | --- androidx.legacy:legacy-support-core-ui:1.0.0-rc01 -> 1.0.0 (*)
Is there a solution I can force to take only stable (fixed) versions?
android android-studio android-jetpack androidx android-jetifier
add a comment |
In the process of migrating to Android X, tt seems that Jetifier tool converts some of the 3rd party libraries to RC versions (gradle-4.6).
| +--- com.facebook.android:facebook-common:4.34.0
| | | +--- com.facebook.android:facebook-core:4.34.0 (*)
| | | +--- com.google.zxing:core:3.3.0
| | | +--- androidx.legacy:legacy-support-v4:1.0.0-rc01
| | | | +--- androidx.core:core:1.0.0-rc01 -> 1.0.1 (*)
| | | | +--- androidx.media:media:1.0.0-rc01
| | | | | +--- androidx.annotation:annotation:1.0.0-rc01 -> 1.0.0
| | | | | +--- androidx.core:core:1.0.0-rc01 -> 1.0.1 (*)
| | | | | --- androidx.versionedparcelable:versionedparcelable:1.0.0-rc01 -> 1.0.0 (*)
| | | | +--- androidx.legacy:legacy-support-core-utils:1.0.0-rc01 -> 1.0.0 (*)
| | | | +--- androidx.legacy:legacy-support-core-ui:1.0.0-rc01 -> 1.0.0 (*)
| | | | --- androidx.fragment:fragment:1.0.0-rc01 -> 1.0.0 (*)
| | | +--- androidx.appcompat:appcompat:1.0.0-rc01 -> 1.0.2 (*)
| | | +--- androidx.cardview:cardview:1.0.0-rc01 -> 1.0.0 (*)
| | | --- androidx.browser:browser:1.0.0-rc01
| | | +--- androidx.core:core:1.0.0-rc01 -> 1.0.1 (*)
| | | +--- androidx.annotation:annotation:1.0.0-rc01 -> 1.0.0
| | | +--- androidx.interpolator:interpolator:1.0.0-rc01 -> 1.0.0 (*)
| | | +--- androidx.collection:collection:1.0.0-rc01 -> 1.0.0 (*)
| | | --- androidx.legacy:legacy-support-core-ui:1.0.0-rc01 -> 1.0.0 (*)
Is there a solution I can force to take only stable (fixed) versions?
android android-studio android-jetpack androidx android-jetifier
add a comment |
In the process of migrating to Android X, tt seems that Jetifier tool converts some of the 3rd party libraries to RC versions (gradle-4.6).
| +--- com.facebook.android:facebook-common:4.34.0
| | | +--- com.facebook.android:facebook-core:4.34.0 (*)
| | | +--- com.google.zxing:core:3.3.0
| | | +--- androidx.legacy:legacy-support-v4:1.0.0-rc01
| | | | +--- androidx.core:core:1.0.0-rc01 -> 1.0.1 (*)
| | | | +--- androidx.media:media:1.0.0-rc01
| | | | | +--- androidx.annotation:annotation:1.0.0-rc01 -> 1.0.0
| | | | | +--- androidx.core:core:1.0.0-rc01 -> 1.0.1 (*)
| | | | | --- androidx.versionedparcelable:versionedparcelable:1.0.0-rc01 -> 1.0.0 (*)
| | | | +--- androidx.legacy:legacy-support-core-utils:1.0.0-rc01 -> 1.0.0 (*)
| | | | +--- androidx.legacy:legacy-support-core-ui:1.0.0-rc01 -> 1.0.0 (*)
| | | | --- androidx.fragment:fragment:1.0.0-rc01 -> 1.0.0 (*)
| | | +--- androidx.appcompat:appcompat:1.0.0-rc01 -> 1.0.2 (*)
| | | +--- androidx.cardview:cardview:1.0.0-rc01 -> 1.0.0 (*)
| | | --- androidx.browser:browser:1.0.0-rc01
| | | +--- androidx.core:core:1.0.0-rc01 -> 1.0.1 (*)
| | | +--- androidx.annotation:annotation:1.0.0-rc01 -> 1.0.0
| | | +--- androidx.interpolator:interpolator:1.0.0-rc01 -> 1.0.0 (*)
| | | +--- androidx.collection:collection:1.0.0-rc01 -> 1.0.0 (*)
| | | --- androidx.legacy:legacy-support-core-ui:1.0.0-rc01 -> 1.0.0 (*)
Is there a solution I can force to take only stable (fixed) versions?
android android-studio android-jetpack androidx android-jetifier
In the process of migrating to Android X, tt seems that Jetifier tool converts some of the 3rd party libraries to RC versions (gradle-4.6).
| +--- com.facebook.android:facebook-common:4.34.0
| | | +--- com.facebook.android:facebook-core:4.34.0 (*)
| | | +--- com.google.zxing:core:3.3.0
| | | +--- androidx.legacy:legacy-support-v4:1.0.0-rc01
| | | | +--- androidx.core:core:1.0.0-rc01 -> 1.0.1 (*)
| | | | +--- androidx.media:media:1.0.0-rc01
| | | | | +--- androidx.annotation:annotation:1.0.0-rc01 -> 1.0.0
| | | | | +--- androidx.core:core:1.0.0-rc01 -> 1.0.1 (*)
| | | | | --- androidx.versionedparcelable:versionedparcelable:1.0.0-rc01 -> 1.0.0 (*)
| | | | +--- androidx.legacy:legacy-support-core-utils:1.0.0-rc01 -> 1.0.0 (*)
| | | | +--- androidx.legacy:legacy-support-core-ui:1.0.0-rc01 -> 1.0.0 (*)
| | | | --- androidx.fragment:fragment:1.0.0-rc01 -> 1.0.0 (*)
| | | +--- androidx.appcompat:appcompat:1.0.0-rc01 -> 1.0.2 (*)
| | | +--- androidx.cardview:cardview:1.0.0-rc01 -> 1.0.0 (*)
| | | --- androidx.browser:browser:1.0.0-rc01
| | | +--- androidx.core:core:1.0.0-rc01 -> 1.0.1 (*)
| | | +--- androidx.annotation:annotation:1.0.0-rc01 -> 1.0.0
| | | +--- androidx.interpolator:interpolator:1.0.0-rc01 -> 1.0.0 (*)
| | | +--- androidx.collection:collection:1.0.0-rc01 -> 1.0.0 (*)
| | | --- androidx.legacy:legacy-support-core-ui:1.0.0-rc01 -> 1.0.0 (*)
Is there a solution I can force to take only stable (fixed) versions?
android android-studio android-jetpack androidx android-jetifier
android android-studio android-jetpack androidx android-jetifier
edited Dec 2 '18 at 20:41
DoronK
asked Nov 21 '18 at 15:34
DoronKDoronK
3,57812329
3,57812329
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Well, after digging in jetifier source code, it seems that the jetifier version comes with gradle-4.6 is alpha10:
/gradle/m2repository/com/android/tools/build/jetifier/jetifier-processor/1.0.0-alpha10/jetifier-processor-1.0.0-alpha10.jar
/gradle/m2repository/com/android/tools/build/jetifier/jetifier-core/1.0.0-alpha10/jetifier-core-1.0.0-alpha10.jar
The local mapping file in this package jetifier converts some of the support libraries to RC versions.
Adding an updated jetifier dependencies solves this issue (top build.gradle):
classpath 'com.android.tools.build.jetifier:jetifier-core:1.0.0-beta02'
classpath 'com.android.tools.build.jetifier:jetifier-processor:1.0.0-beta02'
And here are the results for facebook dependencies tree:
+--- com.facebook.android:facebook-common:4.34.0
| | | +--- com.facebook.android:facebook-core:4.34.0 (*)
| | | +--- com.google.zxing:core:3.3.0
| | | +--- androidx.legacy:legacy-support-v4:1.0.0
| | | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
| | | | +--- androidx.media:media:1.0.0
| | | | | +--- androidx.annotation:annotation:1.0.0
| | | | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
| | | | | --- androidx.versionedparcelable:versionedparcelable:1.0.0 (*)
| | | | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
| | | | +--- androidx.legacy:legacy-support-core-ui:1.0.0 (*)
| | | | --- androidx.fragment:fragment:1.0.0 (*)
| | | +--- androidx.appcompat:appcompat:1.0.0 -> 1.0.2 (*)
| | | +--- androidx.cardview:cardview:1.0.0 (*)
| | | --- androidx.browser:browser:1.0.0
| | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
| | | +--- androidx.annotation:annotation:1.0.0
| | | +--- androidx.interpolator:interpolator:1.0.0 (*)
| | | +--- androidx.collection:collection:1.0.0 (*)
| | | --- androidx.legacy:legacy-support-core-ui:1.0.0 (*)
You have a missed-
injetifier-processor:1.0.0beta02
→ should be1.0.0-beta02
:)
– sosite
Nov 27 '18 at 13:26
Thanks, @sosite
– DoronK
Nov 29 '18 at 14:28
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53415489%2fandroidx-migration-using-jetifier-tool-converts-support-libraries-to-rc-versions%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Well, after digging in jetifier source code, it seems that the jetifier version comes with gradle-4.6 is alpha10:
/gradle/m2repository/com/android/tools/build/jetifier/jetifier-processor/1.0.0-alpha10/jetifier-processor-1.0.0-alpha10.jar
/gradle/m2repository/com/android/tools/build/jetifier/jetifier-core/1.0.0-alpha10/jetifier-core-1.0.0-alpha10.jar
The local mapping file in this package jetifier converts some of the support libraries to RC versions.
Adding an updated jetifier dependencies solves this issue (top build.gradle):
classpath 'com.android.tools.build.jetifier:jetifier-core:1.0.0-beta02'
classpath 'com.android.tools.build.jetifier:jetifier-processor:1.0.0-beta02'
And here are the results for facebook dependencies tree:
+--- com.facebook.android:facebook-common:4.34.0
| | | +--- com.facebook.android:facebook-core:4.34.0 (*)
| | | +--- com.google.zxing:core:3.3.0
| | | +--- androidx.legacy:legacy-support-v4:1.0.0
| | | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
| | | | +--- androidx.media:media:1.0.0
| | | | | +--- androidx.annotation:annotation:1.0.0
| | | | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
| | | | | --- androidx.versionedparcelable:versionedparcelable:1.0.0 (*)
| | | | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
| | | | +--- androidx.legacy:legacy-support-core-ui:1.0.0 (*)
| | | | --- androidx.fragment:fragment:1.0.0 (*)
| | | +--- androidx.appcompat:appcompat:1.0.0 -> 1.0.2 (*)
| | | +--- androidx.cardview:cardview:1.0.0 (*)
| | | --- androidx.browser:browser:1.0.0
| | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
| | | +--- androidx.annotation:annotation:1.0.0
| | | +--- androidx.interpolator:interpolator:1.0.0 (*)
| | | +--- androidx.collection:collection:1.0.0 (*)
| | | --- androidx.legacy:legacy-support-core-ui:1.0.0 (*)
You have a missed-
injetifier-processor:1.0.0beta02
→ should be1.0.0-beta02
:)
– sosite
Nov 27 '18 at 13:26
Thanks, @sosite
– DoronK
Nov 29 '18 at 14:28
add a comment |
Well, after digging in jetifier source code, it seems that the jetifier version comes with gradle-4.6 is alpha10:
/gradle/m2repository/com/android/tools/build/jetifier/jetifier-processor/1.0.0-alpha10/jetifier-processor-1.0.0-alpha10.jar
/gradle/m2repository/com/android/tools/build/jetifier/jetifier-core/1.0.0-alpha10/jetifier-core-1.0.0-alpha10.jar
The local mapping file in this package jetifier converts some of the support libraries to RC versions.
Adding an updated jetifier dependencies solves this issue (top build.gradle):
classpath 'com.android.tools.build.jetifier:jetifier-core:1.0.0-beta02'
classpath 'com.android.tools.build.jetifier:jetifier-processor:1.0.0-beta02'
And here are the results for facebook dependencies tree:
+--- com.facebook.android:facebook-common:4.34.0
| | | +--- com.facebook.android:facebook-core:4.34.0 (*)
| | | +--- com.google.zxing:core:3.3.0
| | | +--- androidx.legacy:legacy-support-v4:1.0.0
| | | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
| | | | +--- androidx.media:media:1.0.0
| | | | | +--- androidx.annotation:annotation:1.0.0
| | | | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
| | | | | --- androidx.versionedparcelable:versionedparcelable:1.0.0 (*)
| | | | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
| | | | +--- androidx.legacy:legacy-support-core-ui:1.0.0 (*)
| | | | --- androidx.fragment:fragment:1.0.0 (*)
| | | +--- androidx.appcompat:appcompat:1.0.0 -> 1.0.2 (*)
| | | +--- androidx.cardview:cardview:1.0.0 (*)
| | | --- androidx.browser:browser:1.0.0
| | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
| | | +--- androidx.annotation:annotation:1.0.0
| | | +--- androidx.interpolator:interpolator:1.0.0 (*)
| | | +--- androidx.collection:collection:1.0.0 (*)
| | | --- androidx.legacy:legacy-support-core-ui:1.0.0 (*)
You have a missed-
injetifier-processor:1.0.0beta02
→ should be1.0.0-beta02
:)
– sosite
Nov 27 '18 at 13:26
Thanks, @sosite
– DoronK
Nov 29 '18 at 14:28
add a comment |
Well, after digging in jetifier source code, it seems that the jetifier version comes with gradle-4.6 is alpha10:
/gradle/m2repository/com/android/tools/build/jetifier/jetifier-processor/1.0.0-alpha10/jetifier-processor-1.0.0-alpha10.jar
/gradle/m2repository/com/android/tools/build/jetifier/jetifier-core/1.0.0-alpha10/jetifier-core-1.0.0-alpha10.jar
The local mapping file in this package jetifier converts some of the support libraries to RC versions.
Adding an updated jetifier dependencies solves this issue (top build.gradle):
classpath 'com.android.tools.build.jetifier:jetifier-core:1.0.0-beta02'
classpath 'com.android.tools.build.jetifier:jetifier-processor:1.0.0-beta02'
And here are the results for facebook dependencies tree:
+--- com.facebook.android:facebook-common:4.34.0
| | | +--- com.facebook.android:facebook-core:4.34.0 (*)
| | | +--- com.google.zxing:core:3.3.0
| | | +--- androidx.legacy:legacy-support-v4:1.0.0
| | | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
| | | | +--- androidx.media:media:1.0.0
| | | | | +--- androidx.annotation:annotation:1.0.0
| | | | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
| | | | | --- androidx.versionedparcelable:versionedparcelable:1.0.0 (*)
| | | | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
| | | | +--- androidx.legacy:legacy-support-core-ui:1.0.0 (*)
| | | | --- androidx.fragment:fragment:1.0.0 (*)
| | | +--- androidx.appcompat:appcompat:1.0.0 -> 1.0.2 (*)
| | | +--- androidx.cardview:cardview:1.0.0 (*)
| | | --- androidx.browser:browser:1.0.0
| | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
| | | +--- androidx.annotation:annotation:1.0.0
| | | +--- androidx.interpolator:interpolator:1.0.0 (*)
| | | +--- androidx.collection:collection:1.0.0 (*)
| | | --- androidx.legacy:legacy-support-core-ui:1.0.0 (*)
Well, after digging in jetifier source code, it seems that the jetifier version comes with gradle-4.6 is alpha10:
/gradle/m2repository/com/android/tools/build/jetifier/jetifier-processor/1.0.0-alpha10/jetifier-processor-1.0.0-alpha10.jar
/gradle/m2repository/com/android/tools/build/jetifier/jetifier-core/1.0.0-alpha10/jetifier-core-1.0.0-alpha10.jar
The local mapping file in this package jetifier converts some of the support libraries to RC versions.
Adding an updated jetifier dependencies solves this issue (top build.gradle):
classpath 'com.android.tools.build.jetifier:jetifier-core:1.0.0-beta02'
classpath 'com.android.tools.build.jetifier:jetifier-processor:1.0.0-beta02'
And here are the results for facebook dependencies tree:
+--- com.facebook.android:facebook-common:4.34.0
| | | +--- com.facebook.android:facebook-core:4.34.0 (*)
| | | +--- com.google.zxing:core:3.3.0
| | | +--- androidx.legacy:legacy-support-v4:1.0.0
| | | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
| | | | +--- androidx.media:media:1.0.0
| | | | | +--- androidx.annotation:annotation:1.0.0
| | | | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
| | | | | --- androidx.versionedparcelable:versionedparcelable:1.0.0 (*)
| | | | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
| | | | +--- androidx.legacy:legacy-support-core-ui:1.0.0 (*)
| | | | --- androidx.fragment:fragment:1.0.0 (*)
| | | +--- androidx.appcompat:appcompat:1.0.0 -> 1.0.2 (*)
| | | +--- androidx.cardview:cardview:1.0.0 (*)
| | | --- androidx.browser:browser:1.0.0
| | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
| | | +--- androidx.annotation:annotation:1.0.0
| | | +--- androidx.interpolator:interpolator:1.0.0 (*)
| | | +--- androidx.collection:collection:1.0.0 (*)
| | | --- androidx.legacy:legacy-support-core-ui:1.0.0 (*)
edited Nov 29 '18 at 14:27
answered Nov 22 '18 at 15:33
DoronKDoronK
3,57812329
3,57812329
You have a missed-
injetifier-processor:1.0.0beta02
→ should be1.0.0-beta02
:)
– sosite
Nov 27 '18 at 13:26
Thanks, @sosite
– DoronK
Nov 29 '18 at 14:28
add a comment |
You have a missed-
injetifier-processor:1.0.0beta02
→ should be1.0.0-beta02
:)
– sosite
Nov 27 '18 at 13:26
Thanks, @sosite
– DoronK
Nov 29 '18 at 14:28
You have a missed
-
in jetifier-processor:1.0.0beta02
→ should be 1.0.0-beta02
:)– sosite
Nov 27 '18 at 13:26
You have a missed
-
in jetifier-processor:1.0.0beta02
→ should be 1.0.0-beta02
:)– sosite
Nov 27 '18 at 13:26
Thanks, @sosite
– DoronK
Nov 29 '18 at 14:28
Thanks, @sosite
– DoronK
Nov 29 '18 at 14:28
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53415489%2fandroidx-migration-using-jetifier-tool-converts-support-libraries-to-rc-versions%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown